1 instantiation of TestSpecifier
Microsoft.NET.TestFramework (1)
TestCommandLine.cs (1)
263TestSpecifier spec = new();
15 references to TestSpecifier
Microsoft.NET.TestFramework (15)
TestCommandLine.cs (15)
147List<TestSpecifier> testsToSkip = new(); 172testsToSkip.Add(TestSpecifier.Parse(item)); 181foreach (var testSpec in testList.TestSpecifiers) 183if (testSpec.Type == TestSpecifier.TestSpecifierType.Method) 187else if (testSpec.Type == TestSpecifier.TestSpecifierType.Class) 191else if (testSpec.Type == TestSpecifier.TestSpecifierType.Namespace) 203foreach (var testSpec in testsToSkip) 205if (testSpec.Type == TestSpecifier.TestSpecifierType.Method) 209else if (testSpec.Type == TestSpecifier.TestSpecifierType.Class) 213else if (testSpec.Type == TestSpecifier.TestSpecifierType.Namespace) 231public List<TestSpecifier> TestSpecifiers { get; set; } = new List<TestSpecifier>(); 242group.TestSpecifiers.Add(TestSpecifier.Parse(item)); 261public static TestSpecifier Parse(XElement element) 263TestSpecifier spec = new();