3 types derived from IdeTestCaseBase
Microsoft.VisualStudio.Extensibility.Testing.Xunit (3)
src\VisualStudio\IntegrationTest\Harness\XUnitShared\Threading\IdeInstanceTestCase.cs (1)
17
public sealed class IdeInstanceTestCase :
IdeTestCaseBase
src\VisualStudio\IntegrationTest\Harness\XUnitShared\Threading\IdeTestCase.cs (1)
15
public sealed class IdeTestCase :
IdeTestCaseBase
src\VisualStudio\IntegrationTest\Harness\XUnitShared\Threading\IdeTheoryTestCase.cs (1)
15
public sealed class IdeTheoryTestCase :
IdeTestCaseBase
4 references to IdeTestCaseBase
Microsoft.VisualStudio.Extensibility.Testing.Xunit (4)
src\VisualStudio\IntegrationTest\Harness\XUnitShared\Harness\IdeTestAssemblyRunner.cs (4)
55
var nonIdeTestCases = testCases.Where(testCase => testCase is not
IdeTestCaseBase
).ToArray();
62
var ideTestCases = testCases.OfType<
IdeTestCaseBase
>().Where(testCase => testCase is not IdeInstanceTestCase).ToArray();
158
|| !
IdeTestCaseBase
.IsInstalled(visualStudioInstanceKey.Version))
370
if (testCase is
IdeTestCaseBase
ideTestCase)