@@ -25,18 +25,16 @@ public HttpsTest(ITestOutputHelper output) : base(output)
25
25
{
26
26
}
27
27
28
- [ Theory ]
29
- [ InlineData ( "V1" ) ]
28
+ [ Fact ]
30
29
public Task Https_HelloWorld_CLR_X64 ( string ancmVersion )
31
30
{
32
- return HttpsHelloWorld ( RuntimeFlavor . Clr , ApplicationType . Portable , port : 44396 , ancmVersion ) ;
31
+ return HttpsHelloWorld ( RuntimeFlavor . Clr , ApplicationType . Portable , port : 44396 , "V1" ) ;
33
32
}
34
33
35
- [ Theory ]
36
- [ InlineData ( "V1" ) ]
37
- public Task Https_HelloWorld_CoreCLR_X64_Portable ( string ancmVersion )
34
+ [ Fact ]
35
+ public Task Https_HelloWorld_CoreCLR_X64_Portable ( )
38
36
{
39
- return HttpsHelloWorld ( RuntimeFlavor . CoreClr , ApplicationType . Portable , port : 44394 , ancmVersion ) ;
37
+ return HttpsHelloWorld ( RuntimeFlavor . CoreClr , ApplicationType . Portable , port : 44394 , "V1" ) ;
40
38
}
41
39
42
40
private async Task HttpsHelloWorld ( RuntimeFlavor runtimeFlavor , ApplicationType applicationType , int port , string ancmVersion )
@@ -97,36 +95,32 @@ private async Task HttpsHelloWorld(RuntimeFlavor runtimeFlavor, ApplicationType
97
95
}
98
96
}
99
97
100
- [ Theory ]
101
- [ InlineData ( "V1" ) ]
98
+ [ Fact ]
102
99
public Task Https_HelloWorld_NoClientCert_CoreCLR_X64_Portable ( string ancmVersion )
103
100
{
104
- return HttpsHelloWorldCerts ( RuntimeFlavor . CoreClr , ApplicationType . Portable , port : 44397 , sendClientCert : false , ancmVersion ) ;
101
+ return HttpsHelloWorldCerts ( RuntimeFlavor . CoreClr , ApplicationType . Portable , port : 44397 , sendClientCert : false , "V1" ) ;
105
102
}
106
103
107
- [ Theory ]
108
- [ InlineData ( "V1" ) ]
104
+ [ Fact ]
109
105
public Task Https_HelloWorld_NoClientCert_Clr_X64 ( string ancmVersion )
110
106
{
111
- return HttpsHelloWorldCerts ( RuntimeFlavor . Clr , ApplicationType . Portable , port : 44398 , sendClientCert : false , ancmVersion ) ;
107
+ return HttpsHelloWorldCerts ( RuntimeFlavor . Clr , ApplicationType . Portable , port : 44398 , sendClientCert : false , "V1" ) ;
112
108
}
113
109
114
110
#pragma warning disable xUnit1004 // Test methods should not be skipped
115
- [ Theory ( Skip = "Manual test only, selecting a client cert is non-determanistic on different machines." ) ]
116
- [ InlineData ( "V1" ) ]
111
+ [ Fact ( Skip = "Manual test only, selecting a client cert is non-determanistic on different machines." ) ]
117
112
#pragma warning restore xUnit1004 // Test methods should not be skipped
118
113
public Task Https_HelloWorld_ClientCert_Clr_X64 ( string ancmVersion )
119
114
{
120
- return HttpsHelloWorldCerts ( RuntimeFlavor . Clr , ApplicationType . Portable , port : 44301 , sendClientCert : true , ancmVersion ) ;
115
+ return HttpsHelloWorldCerts ( RuntimeFlavor . Clr , ApplicationType . Portable , port : 44301 , sendClientCert : true , "V1" ) ;
121
116
}
122
117
123
118
#pragma warning disable xUnit1004 // Test methods should not be skipped
124
- [ Theory ( Skip = "Manual test only, selecting a client cert is non-determanistic on different machines." ) ]
125
- [ InlineData ( "V1" ) ]
119
+ [ Fact ( Skip = "Manual test only, selecting a client cert is non-determanistic on different machines." ) ]
126
120
#pragma warning restore xUnit1004 // Test methods should not be skipped
127
121
public Task Https_HelloWorld_ClientCert_CoreCLR_X64_Portable ( string ancmVersion )
128
122
{
129
- return HttpsHelloWorldCerts ( RuntimeFlavor . CoreClr , ApplicationType . Portable , port : 44302 , sendClientCert : true , ancmVersion ) ;
123
+ return HttpsHelloWorldCerts ( RuntimeFlavor . CoreClr , ApplicationType . Portable , port : 44302 , sendClientCert : true , "V1" ) ;
130
124
}
131
125
132
126
private async Task HttpsHelloWorldCerts ( RuntimeFlavor runtimeFlavor , ApplicationType applicationType , int port , bool sendClientCert , string ancmVersion )
0 commit comments