1 implementation of ITestPlatform
Microsoft.VisualStudio.TestPlatform.Client (1)
TestPlatform.cs (1)
29
internal class TestPlatform :
ITestPlatform
8 references to ITestPlatform
Microsoft.TestPlatform.CrossPlatEngine (1)
DataCollection\ProxyDataCollectionManager.cs (1)
350
var extensionsFolder = Path.Combine(Path.GetDirectoryName(typeof(
ITestPlatform
).Assembly.GetAssemblyLocation())!, "Extensions");
Microsoft.VisualStudio.TestPlatform.Client (3)
TestPlatformFactory.cs (3)
13
private static
ITestPlatform
? s_testPlatform;
18
/// <returns> The <see cref="
ITestPlatform
"/> instance. </returns>
19
public static
ITestPlatform
GetTestPlatform() => s_testPlatform ??= new TestPlatform();
vstest.console (2)
TestPlatformHelpers\TestRequestManager.cs (2)
53
private readonly
ITestPlatform
_testPlatform;
117
ITestPlatform
testPlatform,
vstest.console.arm64 (2)
src\vstest\src\vstest.console\TestPlatformHelpers\TestRequestManager.cs (2)
53
private readonly
ITestPlatform
_testPlatform;
117
ITestPlatform
testPlatform,