Skip to content

Commit 0dd4f1c

Browse files
authored
[rel/3.5] Fix ResultFiles placement in TRX report (#3264)
1 parent 5a7bb00 commit 0dd4f1c

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

src/Platform/Microsoft.Testing.Extensions.TrxReport/TrxReportEngine.cs

+7-7
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,12 @@ private void AddResults(string testAppModule, XElement testRun, out XElement tes
525525
output.Add(errorInfoElement);
526526
}
527527

528+
// add collectorDataEntries details
529+
if (output.HasElements && outcome != "NotExecuted")
530+
{
531+
unitTestResult.Add(output);
532+
}
533+
528534
if (_artifactsByTestNode.TryGetValue(testNode.Uid, out List<SessionFileArtifact>? fileArtifacts))
529535
{
530536
var resultFiles = new XElement("ResultFiles");
@@ -536,13 +542,7 @@ private void AddResults(string testAppModule, XElement testRun, out XElement tes
536542
new XAttribute("path", fileArtifact.FileInfo.FullName)));
537543
}
538544

539-
output.Add(resultFiles);
540-
}
541-
542-
// add collectorDataEntries details
543-
if (output.HasElements && outcome != "NotExecuted")
544-
{
545-
unitTestResult.Add(output);
545+
unitTestResult.Add(resultFiles);
546546
}
547547

548548
results.Add(unitTestResult);

test/UnitTests/Microsoft.Testing.Extensions.UnitTests/TrxTests.cs

+3-5
Original file line numberDiff line numberDiff line change
@@ -299,11 +299,9 @@ public async Task TrxReportEngine_GenerateReportAsync_WithArtifactsByTestNode_Tr
299299
string trxContent = xml.ToString();
300300
string trxContentsPattern = @"
301301
<UnitTestResult .* testName=""TestMethod"" .* outcome=""Passed"" .*>
302-
<Output>
303-
<ResultFiles>
304-
<ResultFile path=.*fileName"" />
305-
</ResultFiles>
306-
</Output>
302+
<ResultFiles>
303+
<ResultFile path=.*fileName"" />
304+
</ResultFiles>
307305
</UnitTestResult>
308306
";
309307
Assert.That(Regex.IsMatch(trxContent, trxContentsPattern));

0 commit comments

Comments
 (0)