3 writes to _testResults
Microsoft.TestPlatform.CrossPlatEngine (3)
Execution\TestRunCache.cs (3)
97
_testResults
= new Collection<TestResult>();
275
_testResults
= new Collection<TestResult>();
340
_testResults
= new Collection<TestResult>();
6 references to _testResults
Microsoft.TestPlatform.CrossPlatEngine (6)
Execution\TestRunCache.cs (6)
118
return
_testResults
;
205
_testResults
.Add(testResult);
273
var lastChunk =
_testResults
;
318
if ((
_testResults
.Count + inProgressTestsCount) >= _cacheSize || (timeDelta >= _cacheTimeout && inProgressTestsCount > 0))
329
if (
_testResults
.Count > 0 || _inProgressTests.Count > 0)
339
_onCacheHit(TestRunStatistics,
_testResults
, _inProgressTests);