2 instantiations of BlameTestObject
Microsoft.TestPlatform.Extensions.BlameDataCollector (2)
BlameCollector.cs (1)
463var blameTestObject = new BlameTestObject(e.TestElement);
XmlReaderWriter.cs (1)
135var testCase = new BlameTestObject
15 references to BlameTestObject
Microsoft.TestPlatform.Extensions.BlameDataCollector (15)
BlameCollector.cs (5)
43private ConcurrentDictionary<Guid, BlameTestObject>? _testObjectDictionary; 141_testObjectDictionary = new ConcurrentDictionary<Guid, BlameTestObject>(); 463var blameTestObject = new BlameTestObject(e.TestElement); 514Dictionary<Guid, BlameTestObject> testObjectDictionaryCopy; 517testObjectDictionaryCopy = new Dictionary<Guid, BlameTestObject>(_testObjectDictionary);
BlameTestObject.cs (3)
13/// Initializes a new instance of the <see cref="BlameTestObject"/> class. 21/// Initializes a new instance of the <see cref="BlameTestObject"/> class. 42/// Initializes a new instance of the <see cref="BlameTestObject"/> class.
Interfaces\IBlameReaderWriter.cs (2)
18string WriteTestSequence(List<Guid> testSequence, Dictionary<Guid, BlameTestObject> testObjectDictionary, string filePath); 25List<BlameTestObject> ReadTestSequence(string filePath);
XmlReaderWriter.cs (5)
59public string WriteTestSequence(List<Guid> testSequence, Dictionary<Guid, BlameTestObject> testObjectDictionary, string filePath) 77var testObject = testObjectDictionary[testGuid]; 103public List<BlameTestObject> ReadTestSequence(string filePath) 112var testCaseList = new List<BlameTestObject>(); 135var testCase = new BlameTestObject