Share via


ITmi.GetTestsNotInAnyTestList Method

Definition

Overloads

GetTestsNotInAnyTestList()

Gets an array of tests that are not in any of the test lists in the UI of Visual Studio Test Professional.

GetTestsNotInAnyTestList(TestRun)

Gets an array of tests that are not in any of the test lists in the UI of Visual Studio Test Professional and that are in the provided test run.

GetTestsNotInAnyTestList()

Gets an array of tests that are not in any of the test lists in the UI of Visual Studio Test Professional.

public:
 cli::array <Microsoft::VisualStudio::TestTools::Common::ITestElement ^> ^ GetTestsNotInAnyTestList();
public Microsoft.VisualStudio.TestTools.Common.ITestElement[] GetTestsNotInAnyTestList ();
abstract member GetTestsNotInAnyTestList : unit -> Microsoft.VisualStudio.TestTools.Common.ITestElement[]
Public Function GetTestsNotInAnyTestList () As ITestElement()

Returns

An array of uncategorized tests, or an empty array if no tests are loaded or if no tests are uncategorized.

Applies to

GetTestsNotInAnyTestList(TestRun)

Gets an array of tests that are not in any of the test lists in the UI of Visual Studio Test Professional and that are in the provided test run.

public:
 cli::array <Microsoft::VisualStudio::TestTools::Common::ITestElement ^> ^ GetTestsNotInAnyTestList(Microsoft::VisualStudio::TestTools::Common::TestRun ^ run);
public Microsoft.VisualStudio.TestTools.Common.ITestElement[] GetTestsNotInAnyTestList (Microsoft.VisualStudio.TestTools.Common.TestRun run);
abstract member GetTestsNotInAnyTestList : Microsoft.VisualStudio.TestTools.Common.TestRun -> Microsoft.VisualStudio.TestTools.Common.ITestElement[]
Public Function GetTestsNotInAnyTestList (run As TestRun) As ITestElement()

Parameters

run
TestRun

A TestRun object.

Returns

An array of uncategorized tests, or an empty array if no tests are loaded or if no tests are uncategorized.

Applies to