1 instantiation of TestRunArtifact
dotnet-aot (1)
parent\dotnet\Commands\Test\MTP\Terminal\TerminalTestReporter.cs (1)
1289
_artifacts.Add(new
TestRunArtifact
(outOfProcess, assembly, targetFramework, architecture, executionId, testName, path));
5 references to TestRunArtifact
dotnet-aot (5)
parent\dotnet\Commands\Test\MTP\Terminal\TerminalTestReporter.cs (5)
41
private readonly List<
TestRunArtifact
> _artifacts = [];
239
TestRunArtifact
[] artifacts;
245
IEnumerable<IGrouping<bool,
TestRunArtifact
>> artifactGroups = artifacts.GroupBy(a => a.OutOfProcess);
253
foreach (IGrouping<bool,
TestRunArtifact
> artifactGroup in artifactGroups)
257
foreach (
TestRunArtifact
artifact in artifactGroup)