Generic Tests Overview

Use a generic test to wrap an existing test, program, or third-party tool that behaves as follows:

  • It can be run from a command line.

  • It returns a value of Pass or Fail.

  • Optionally, it also returns detailed results for 'inner' tests, tests that it contains.

Visual Studio treats generic tests just like other tests: you can manage and run them using the same views, and you can obtain and publish their results.

Generic tests are a simple form of extensibility for Visual Studio Ultimate; they let you run other tests, such as previous tests and custom tests, in addition to the predefined test types, which are Web, load, unit, manual, and ordered.

Security noteSecurity Note

Not only can a generic test call an executable program on your computer, it uses your credentials as it does so. Therefore, be sure you trust the author of the program and know what the program will do.

See Also

Tasks

How to: Create a Generic Test

Walkthrough: Creating and Running a Generic Test

Concepts

Using a Summary Results File with a Generic Test

Other Resources

Generic Tests Settings Examples