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
15
15
[ TestMethod ]
16
16
[ DynamicData ( nameof ( Data ) ) ]
17
17
public void Test3 ( int a , int b )
18
- => Assert . AreNotEqual ( a , b ) ;
18
+ => throw new Exception ( "aaaa" ) ;
19
19
20
20
public static IEnumerable < ( int A , int B ) > Data
21
21
{
Original file line number Diff line number Diff line change 13
13
using Microsoft . Testing . Platform . IPC . Serializers ;
14
14
using Microsoft . Testing . Platform . Logging ;
15
15
using Microsoft . Testing . Platform . MSBuild . Tasks ;
16
+ using Microsoft . Testing . Platform . OutputDevice ;
16
17
17
18
using static Microsoft . Testing . Platform . MSBuild . Tasks . DotnetMuxerLocator ;
18
19
@@ -488,6 +489,8 @@ private Task<IResponse> HandleRequestAsync(IRequest request)
488
489
runSummaryInfoRequest . Total ,
489
490
runSummaryInfoRequest . Duration ) ;
490
491
492
+ summary += $ " - { Path . GetFileName ( TargetPath . ItemSpec ) } ({ TargetFrameworkParser . GetShortTargetFramework ( TargetFramework . ItemSpec ) } |{ TestArchitecture . ItemSpec } )";
493
+
491
494
if ( MSBuildCompatibilityHelper . SupportsTerminalLoggerWithExtendedMessages ( ) )
492
495
{
493
496
var metadata = new Dictionary < string , string ? >
You can’t perform that action at this time.
0 commit comments