Microsoft.VisualStudio.TestTools.UnitTesting Namespace

The Microsoft.VisualStudio.TestTools.UnitTesting namespace supplies classes that provide unit testing support. This namespace contains many attributes that identify test information to the test engine regarding data sources, order of method execution, program management, agent/host information, and deployment data. The Microsoft.VisualStudio.TestTools.UnitTesting namespace also contains custom unit testing exceptions.

To read a walkthrough of the unit test framework, go to the MSDN Library and search for the following article, "A Unit Testing Walkthrough with Visual Studio Team Test".

Classes

  Class Description
Public class AssemblyCleanupAttribute Identifies a method that contains code to be used after all tests in the assembly have run and to free resources obtained by the assembly. This class cannot be inherited.
Public class AssemblyInitializeAttribute Identifies a method that contains code to be used before all tests in the assembly have run and to allocate resources obtained by the assembly. This class cannot be inherited.
Public class Assert Verifies conditions in unit tests using true/false propositions.
Public class AssertFailedException Used to indicate failure for a test.
Public class AssertInconclusiveException Used to indicate that a test is not yet implemented.
Public class BaseShadow This class is used by the publicize method to help test private types.
Public class ClassCleanupAttribute Identifies a method that contains code to be used after all the tests in the test class have run and to free resources obtained by the test class. This class cannot be inherited.
Public class ClassInitializeAttribute Identifies a method that contains code that must be used before any of the tests in the test class have run and to allocate resources to be used by the test class. This class cannot be inherited.
Public class CollectionAssert Verifies true/false propositions associated with collections in unit tests.
Public class CssIterationAttribute Represents the project iteration to which this test corresponds. This class cannot be inherited.
Public class CssProjectStructureAttribute Represents the node in the team project hierarchy to which this test corresponds.
Public class DataSourceAttribute Provides data source-specific information for data-driven testing. This class cannot be inherited.
Public class DataSourceElement Represents a data source element as an XML tag within a configuration file.
Public class DataSourceElementCollection Represents an XML element that contains a collection of child DataSourceElement objects.
Public class DeploymentItemAttribute Used to specify deployment items such as files or directories for per-test deployment. This class cannot be inherited.
Public class DescriptionAttribute Used to specify the description of the test. This class cannot be inherited.
Public class ExpectedExceptionAttribute Indicates that an exception is expected during test method execution. This class cannot be inherited.
Public class GenericParameterHelper This class is a placeholder for use with generics. It helps you test generic types by letting you pass non-specific type arguments.
Public class HostTypeAttribute Used to specify the type of host that this unit test will run in. This class cannot be inherited.
Public class IgnoreAttribute Indicates that a specific test should not be run. This class cannot be inherited.
Public class InternalTestFailureException The exception that is thrown to indicate an internal failure for a test.
Public class OwnerAttribute Used to specify the person responsible for maintaining, running, and/or debugging the test. This class cannot be inherited.
Public class PriorityAttribute Used to specify the priority of a unit test. This class cannot be inherited.
Public class PrivateObject Allows test code to call methods and properties on the code under test that would be inaccessible because they are not public.
Public class PrivateType Represents the type of a private class that gives access to private static implementations.
Public class ShadowingAttribute Do not use this class.
Public class StringAssert Verifies true/false propositions associated with strings in unit tests.
Public class TestClassAttribute Used to identify classes that contain test methods. This class cannot be inherited.
Public class TestCleanupAttribute Identifies a method that contains code that must be used after the test has run and to free resources obtained by all the tests in the test class. This class cannot be inherited.
Public class TestConfiguration Provides access to a TestConfigurationSection that represents the microsoft.visualstudio.testtools section in an app.config file.
Public class TestConfigurationSection Provides access to data source configuration data.
Public class TestContext Used to store information that is provided to unit tests.
Public class TestInitializeAttribute Identifies the method to run before the test to allocate and configure resources needed by all tests in the test class. This class cannot be inherited.
Public class TestMethodAttribute Used to identify test methods. This class cannot be inherited.
Public class TestPropertyAttribute Establishes a test specific property on a method. This class cannot be inherited.
Public class TimeoutAttribute Used to specify the time-out period of a unit test.
Public class UnitTestAssertException This is the base class for unit test exceptions.
Public class WebServiceHelper Contains helper methods for Web service testing.
Public class WorkItemAttribute Used to specify a work item associated with a test.

Delegates

  Delegate Description
Protected delegate BaseShadow.ElementConverter Do not use this delegate.

Enumerations

  Enumeration Description
Public enumeration DataAccessMethod Specifies constants that indicate how data rows are accessed in data-driven testing.
Public enumeration UnitTestOutcome Use UnitTestOutcome to programmatically determine the outcome of a test that has run or is currently running.

See Also

Reference

Other Resources

About Unit Tests

Working with Unit Tests

Creating Unit Tests

Walkthrough: Creating and Running Unit Tests

Walkthrough: Run Tests and View Code Coverage