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