File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/Platform/Microsoft.Testing.Platform.MSBuild/Tasks Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public class TestClass
1515 [ TestMethod ]
1616 [ DynamicData ( nameof ( Data ) ) ]
1717 public void Test3 ( int a , int b )
18- => Assert . AreNotEqual ( a , b ) ;
18+ => throw new Exception ( "aaaa" ) ;
1919
2020 public static IEnumerable < ( int A , int B ) > Data
2121 {
Original file line number Diff line number Diff line change 1313using Microsoft . Testing . Platform . IPC . Serializers ;
1414using Microsoft . Testing . Platform . Logging ;
1515using Microsoft . Testing . Platform . MSBuild . Tasks ;
16+ using Microsoft . Testing . Platform . OutputDevice ;
1617
1718using static Microsoft . Testing . Platform . MSBuild . Tasks . DotnetMuxerLocator ;
1819
@@ -488,6 +489,8 @@ private Task<IResponse> HandleRequestAsync(IRequest request)
488489 runSummaryInfoRequest . Total ,
489490 runSummaryInfoRequest . Duration ) ;
490491
492+ summary += $ " - { Path . GetFileName ( TargetPath . ItemSpec ) } ({ TargetFrameworkParser . GetShortTargetFramework ( TargetFramework . ItemSpec ) } |{ TestArchitecture . ItemSpec } )";
493+
491494 if ( MSBuildCompatibilityHelper . SupportsTerminalLoggerWithExtendedMessages ( ) )
492495 {
493496 var metadata = new Dictionary < string , string ? >
You can’t perform that action at this time.
0 commit comments