2 writes to _testCase
dotnet-format.UnitTests (2)
XUnit\MSBuildTestCase.cs (2)
36
_testCase
= testCase ?? throw new ArgumentNullException(nameof(testCase));
63
_testCase
= info.GetValue<IXunitTestCase>("InnerTestCase");
12 references to _testCase
dotnet-format.UnitTests (12)
XUnit\MSBuildTestCase.cs (12)
16
public string DisplayName =>
_testCase
.DisplayName;
17
public IMethodInfo Method =>
_testCase
.Method;
18
public string SkipReason =>
_testCase
.SkipReason;
19
public ITestMethod TestMethod =>
_testCase
.TestMethod;
20
public object[] TestMethodArguments =>
_testCase
.TestMethodArguments;
21
public Dictionary<string, List<string>> Traits =>
_testCase
.Traits;
22
public string UniqueID =>
_testCase
.UniqueID;
26
get =>
_testCase
.SourceInformation;
27
set =>
_testCase
.SourceInformation = value;
30
public Exception InitializationException =>
_testCase
.InitializationException;
32
public int Timeout =>
_testCase
.Timeout;
68
info.AddValue("InnerTestCase",
_testCase
);