1 instantiation of TestRunArtifact
dotnet (1)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (1)
1279
_artifacts.Add(new
TestRunArtifact
(outOfProcess, assembly, targetFramework, architecture, executionId, testName, path));
5 references to TestRunArtifact
dotnet (5)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (5)
41
private readonly List<
TestRunArtifact
> _artifacts = [];
229
TestRunArtifact
[] artifacts;
235
IEnumerable<IGrouping<bool,
TestRunArtifact
>> artifactGroups = artifacts.GroupBy(a => a.OutOfProcess);
243
foreach (IGrouping<bool,
TestRunArtifact
> artifactGroup in artifactGroups)
247
foreach (
TestRunArtifact
artifact in artifactGroup)