Click to Rate and Give Feedback

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0

Other versions are also available for the following:
Team Test API
TestMethodAttribute Class

Used to identify test methods. This class cannot be inherited.

Namespace: Microsoft.VisualStudio.TestTools.UnitTesting
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in microsoft.visualstudio.qualitytools.unittestframework.dll)

Visual Basic (Declaration)
<AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple:=False)> _
Public NotInheritable Class TestMethodAttribute
	Inherits Attribute
Visual Basic (Usage)
Dim instance As TestMethodAttribute
C#
[AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple=false)] 
public sealed class TestMethodAttribute : Attribute
C++
[AttributeUsageAttribute(AttributeTargets::Method, AllowMultiple=false)] 
public ref class TestMethodAttribute sealed : public Attribute
J#
/** @attribute AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple=false) */ 
public final class TestMethodAttribute extends Attribute
JScript
AttributeUsageAttribute(AttributeTargets.Method, AllowMultiple=false) 
public final class TestMethodAttribute extends Attribute

Test methods must be located in a test class and must be marked with the TestMethodAttribute to be valid.

This attribute can be specified on a method. Only one instance of this attribute may be applied to a method.

This attribute is used by default to distinguish test methods in auto-generated code.

For more information about how to use attributes, see Extending Metadata Using Attributes.

System.Object
   System.Attribute
    Microsoft.VisualStudio.TestTools.UnitTesting.TestMethodAttribute
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
method signature cannot contain parameters      Chris Lively   |   Edit   |   Show History

Methods marked with the TestMethod attribute can not take any parameters.

For example:

[TestMethod]
public void TestSave(int count) {
//... do something
}

is not a valid signature.

Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker