ITestMethod.InvokeAsync(Object[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Invokes the test method.
public System.Threading.Tasks.Task<Microsoft.VisualStudio.TestTools.UnitTesting.TestResult> InvokeAsync(object[]? arguments);
abstract member InvokeAsync : obj[] -> System.Threading.Tasks.Task<Microsoft.VisualStudio.TestTools.UnitTesting.TestResult>
Public Function InvokeAsync (arguments As Object()) As Task(Of TestResult)
Parameters
- arguments
- Object[]
Arguments to pass to test method. (E.g. For data driven).
Returns
Task<Microsoft.VisualStudio.TestTools.UnitTesting.TestResult>
Result of test method invocation.
Remarks
This call handles asynchronous test methods as well.