1 implementation of ExecutedTests
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
Client\TestRunStatistics.cs (1)
51public long ExecutedTests { get; set; }
12 references to ExecutedTests
Microsoft.TestPlatform.CommunicationUtilities (3)
_generated\36\TestPlatformJsonContext.ITestRunStatistics.g.cs (2)
80Getter = static obj => ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics)obj).ExecutedTests, 110writer.WriteNumber(PropName_ExecutedTests, ((global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics)value).ExecutedTests);
Serialization\TestRunStatisticsConverter.cs (1)
51writer.WriteNumber("ExecutedTests", value.ExecutedTests);
Microsoft.TestPlatform.CrossPlatEngine (1)
Client\Parallel\ParallelRunDataAggregator.cs (1)
91totalTests += runStats.ExecutedTests;
vstest.console (4)
Internal\MSBuildLogger.cs (1)
118var total = e.TestRunStatistics?.ExecutedTests ?? 0;
Processors\RunSpecificTestsArgumentProcessor.cs (1)
362var testsFoundInAnySource = e.TestRunStatistics != null && (e.TestRunStatistics.ExecutedTests > 0);
Processors\RunTestsArgumentProcessor.cs (2)
221var testsFoundInAnySource = e.TestRunStatistics != null && e.TestRunStatistics.ExecutedTests > 0; 222s_numberOfExecutedTests = e.TestRunStatistics!.ExecutedTests;
vstest.console.arm64 (4)
src\vstest\src\vstest.console\Internal\MSBuildLogger.cs (1)
118var total = e.TestRunStatistics?.ExecutedTests ?? 0;
src\vstest\src\vstest.console\Processors\RunSpecificTestsArgumentProcessor.cs (1)
362var testsFoundInAnySource = e.TestRunStatistics != null && (e.TestRunStatistics.ExecutedTests > 0);
src\vstest\src\vstest.console\Processors\RunTestsArgumentProcessor.cs (2)
221var testsFoundInAnySource = e.TestRunStatistics != null && e.TestRunStatistics.ExecutedTests > 0; 222s_numberOfExecutedTests = e.TestRunStatistics!.ExecutedTests;