@@ -15,7 +15,7 @@ public class AbortTest : ClientWebSocketTestBase
1515 {
1616 public AbortTest ( ITestOutputHelper output ) : base ( output ) { }
1717
18- [ OuterLoop ]
18+ [ OuterLoop ( "Uses external servers" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . LocalEchoServerIsNotAvailable ) ) ]
1919 [ ConditionalTheory ( nameof ( WebSocketsSupported ) ) , MemberData ( nameof ( EchoServers ) ) ]
2020 public async Task Abort_ConnectAndAbort_ThrowsWebSocketExceptionWithmessage ( Uri server )
2121 {
@@ -40,7 +40,7 @@ public async Task Abort_ConnectAndAbort_ThrowsWebSocketExceptionWithmessage(Uri
4040 }
4141 }
4242
43- [ OuterLoop ]
43+ [ OuterLoop ( "Uses external servers" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . LocalEchoServerIsNotAvailable ) ) ]
4444 [ ConditionalTheory ( nameof ( WebSocketsSupported ) ) , MemberData ( nameof ( EchoServers ) ) ]
4545 public async Task Abort_SendAndAbort_Success ( Uri server )
4646 {
@@ -60,7 +60,7 @@ await TestCancellation(async (cws) =>
6060 } , server ) ;
6161 }
6262
63- [ OuterLoop ]
63+ [ OuterLoop ( "Uses external servers" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . LocalEchoServerIsNotAvailable ) ) ]
6464 [ ConditionalTheory ( nameof ( WebSocketsSupported ) ) , MemberData ( nameof ( EchoServers ) ) ]
6565 public async Task Abort_ReceiveAndAbort_Success ( Uri server )
6666 {
@@ -84,7 +84,7 @@ await cws.SendAsync(
8484 } , server ) ;
8585 }
8686
87- [ OuterLoop ]
87+ [ OuterLoop ( "Uses external servers" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . LocalEchoServerIsNotAvailable ) ) ]
8888 [ ConditionalTheory ( nameof ( WebSocketsSupported ) ) , MemberData ( nameof ( EchoServers ) ) ]
8989 public async Task Abort_CloseAndAbort_Success ( Uri server )
9090 {
@@ -108,7 +108,7 @@ await cws.SendAsync(
108108 } , server ) ;
109109 }
110110
111- [ OuterLoop ]
111+ [ OuterLoop ( "Uses external servers" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . LocalEchoServerIsNotAvailable ) ) ]
112112 [ ConditionalTheory ( nameof ( WebSocketsSupported ) ) , MemberData ( nameof ( EchoServers ) ) ]
113113 public async Task ClientWebSocket_Abort_CloseOutputAsync ( Uri server )
114114 {
0 commit comments