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