Compartir a través de


TestMethodAttribute.Execute(ITestMethod) Method

Definition

Executes a test method.

public virtual Microsoft.VisualStudio.TestTools.UnitTesting.TestResult[] Execute (Microsoft.VisualStudio.TestTools.UnitTesting.ITestMethod testMethod);
abstract member Execute : Microsoft.VisualStudio.TestTools.UnitTesting.ITestMethod -> Microsoft.VisualStudio.TestTools.UnitTesting.TestResult[]
override this.Execute : Microsoft.VisualStudio.TestTools.UnitTesting.ITestMethod -> Microsoft.VisualStudio.TestTools.UnitTesting.TestResult[]
Public Overridable Function Execute (testMethod As ITestMethod) As TestResult()

Parameters

testMethod
ITestMethod

The test method to execute.

Returns

Microsoft.VisualStudio.TestTools.UnitTesting.TestResult[]

An array of TestResult objects that represent the outcome(s) of the test.

Remarks

Extensions can override this method to customize running a TestMethod.

Applies to