Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/libraries/System.Net.WebSockets.Client/tests/ClientWebSocketTestBase.cs')
-rw-r--r--src/libraries/System.Net.WebSockets.Client/tests/ClientWebSocketTestBase.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libraries/System.Net.WebSockets.Client/tests/ClientWebSocketTestBase.cs b/src/libraries/System.Net.WebSockets.Client/tests/ClientWebSocketTestBase.cs
index 203040e4ffc..a32587bc862 100644
--- a/src/libraries/System.Net.WebSockets.Client/tests/ClientWebSocketTestBase.cs
+++ b/src/libraries/System.Net.WebSockets.Client/tests/ClientWebSocketTestBase.cs
@@ -26,6 +26,11 @@ namespace System.Net.WebSockets.Client.Tests
new object[] { o[0], false },
new object[] { o[0], true }
}).ToArray();
+ public static readonly object[][] SecureEchoServersAndBoolean = new object[][]
+ {
+ new object[] { Test.Common.Configuration.WebSockets.SecureRemoteEchoServer, false },
+ new object[] { Test.Common.Configuration.WebSockets.SecureRemoteEchoServer, true }
+ };
public const int TimeOutMilliseconds = 30000;
public const int CloseDescriptionMaxLength = 123;