1 write to _testObjectDictionary
Microsoft.TestPlatform.Extensions.BlameDataCollector (1)
BlameCollector.cs (1)
141
_testObjectDictionary
= new ConcurrentDictionary<Guid, BlameTestObject>();
7 references to _testObjectDictionary
Microsoft.TestPlatform.Extensions.BlameDataCollector (7)
BlameCollector.cs (7)
126
[MemberNotNull(nameof(_events), nameof(_dataCollectionSink), nameof(_testSequence), nameof(
_testObjectDictionary
), nameof(_logger))]
457
TPDebug.Assert(_testSequence != null &&
_testObjectDictionary
!= null, "Initialize must be called before calling this method");
469
_testObjectDictionary
.TryAdd(blameTestObject.Id, blameTestObject);
479
TPDebug.Assert(
_testObjectDictionary
!= null, "Initialize must be called before calling this method");
488
_testObjectDictionary
[e.TestElement.Id].IsCompleted = true;
498
TPDebug.Assert(_testSequence != null &&
_testObjectDictionary
!= null && _context != null && _dataCollectionSink != null && _logger != null, "Initialize must be called before calling this method");
517
testObjectDictionaryCopy = new Dictionary<Guid, BlameTestObject>(
_testObjectDictionary
);