Share via


ITmi.AddManagedTestStorage Method

Definition

Overloads

AddManagedTestStorage(Object, String)

Adds a test storage path of a specific test manager.

AddManagedTestStorage(Object, String, TestType)

Adds the provided test storage path of a specific test manager and specified test type.

AddManagedTestStorage(Object, String)

Adds a test storage path of a specific test manager.

public:
 void AddManagedTestStorage(System::Object ^ manager, System::String ^ storagePath);
public void AddManagedTestStorage (object manager, string storagePath);
abstract member AddManagedTestStorage : obj * string -> unit
Public Sub AddManagedTestStorage (manager As Object, storagePath As String)

Parameters

manager
Object

The object that manages (loads, saves, updates, etc.) tests in the specified path.

storagePath
String

The path of the file that contains the tests that are managed. Can be a DLL from a test project that contains unit tests.

Applies to

AddManagedTestStorage(Object, String, TestType)

Adds the provided test storage path of a specific test manager and specified test type.

public:
 void AddManagedTestStorage(System::Object ^ manager, System::String ^ storagePath, Microsoft::VisualStudio::TestTools::Common::TestType ^ testType);
public void AddManagedTestStorage (object manager, string storagePath, Microsoft.VisualStudio.TestTools.Common.TestType testType);
abstract member AddManagedTestStorage : obj * string * Microsoft.VisualStudio.TestTools.Common.TestType -> unit
Public Sub AddManagedTestStorage (manager As Object, storagePath As String, testType As TestType)

Parameters

manager
Object

The object that manages (loads, saves, updates, etc.) tests in the specified path.

storagePath
String

The path of the file that contains the tests that are managed. Can be a DLL from a test project that contains unit tests.

testType
TestType

A TestType object.

Applies to