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)
16public string DisplayName => _testCase.DisplayName; 17public IMethodInfo Method => _testCase.Method; 18public string SkipReason => _testCase.SkipReason; 19public ITestMethod TestMethod => _testCase.TestMethod; 20public object[] TestMethodArguments => _testCase.TestMethodArguments; 21public Dictionary<string, List<string>> Traits => _testCase.Traits; 22public string UniqueID => _testCase.UniqueID; 26get => _testCase.SourceInformation; 27set => _testCase.SourceInformation = value; 30public Exception InitializationException => _testCase.InitializationException; 32public int Timeout => _testCase.Timeout; 68info.AddValue("InnerTestCase", _testCase);