@@ -12,7 +12,7 @@ public class AsyncTests
12
12
[ Fact ]
13
13
public void Can_Perform_GET_Async ( )
14
14
{
15
- const string baseUrl = "http://localhost:8080 /" ;
15
+ const string baseUrl = "http://localhost:8888 /" ;
16
16
const string val = "Basic async test" ;
17
17
18
18
var resetEvent = new ManualResetEvent ( false ) ;
@@ -36,7 +36,7 @@ public void Can_Perform_GET_Async()
36
36
[ Fact ]
37
37
public void Can_Perform_GET_Async_Without_Async_Handle ( )
38
38
{
39
- const string baseUrl = "http://localhost:8080 /" ;
39
+ const string baseUrl = "http://localhost:8888 /" ;
40
40
const string val = "Basic async test" ;
41
41
42
42
var resetEvent = new ManualResetEvent ( false ) ;
@@ -60,7 +60,7 @@ public void Can_Perform_GET_Async_Without_Async_Handle()
60
60
[ Fact ]
61
61
public void Can_Perform_GET_TaskAsync ( )
62
62
{
63
- const string baseUrl = "http://localhost:8080 /" ;
63
+ const string baseUrl = "http://localhost:8888 /" ;
64
64
const string val = "Basic async task test" ;
65
65
66
66
using ( SimpleServer . Create ( baseUrl , Handlers . EchoValue ( val ) ) )
@@ -79,7 +79,7 @@ public void Can_Perform_GET_TaskAsync()
79
79
[ Fact ]
80
80
public void Can_Handle_Exception_Thrown_By_OnBeforeDeserialization_Handler ( )
81
81
{
82
- const string baseUrl = "http://localhost:8080 /" ;
82
+ const string baseUrl = "http://localhost:8888 /" ;
83
83
const string ExceptionMessage = "Thrown from OnBeforeDeserialization" ;
84
84
85
85
using ( SimpleServer . Create ( baseUrl , Handlers . Generic < ResponseHandler > ( ) ) )
@@ -117,7 +117,7 @@ public void Can_Handle_Exception_Thrown_By_OnBeforeDeserialization_Handler()
117
117
[ Fact ]
118
118
public void Can_Perform_ExecuteGetTaskAsync_With_Response_Type ( )
119
119
{
120
- const string baseUrl = "http://localhost:8080 /" ;
120
+ const string baseUrl = "http://localhost:8888 /" ;
121
121
122
122
using ( SimpleServer . Create ( baseUrl , Handlers . Generic < ResponseHandler > ( ) ) )
123
123
{
@@ -134,7 +134,7 @@ public void Can_Perform_ExecuteGetTaskAsync_With_Response_Type()
134
134
[ Fact ]
135
135
public void Can_Perform_GetTaskAsync_With_Response_Type ( )
136
136
{
137
- const string baseUrl = "http://localhost:8080 /" ;
137
+ const string baseUrl = "http://localhost:8888 /" ;
138
138
139
139
using ( SimpleServer . Create ( baseUrl , Handlers . Generic < ResponseHandler > ( ) ) )
140
140
{
@@ -151,7 +151,7 @@ public void Can_Perform_GetTaskAsync_With_Response_Type()
151
151
[ Fact ]
152
152
public void Can_Cancel_GET_TaskAsync ( )
153
153
{
154
- const string baseUrl = "http://localhost:8080 /" ;
154
+ const string baseUrl = "http://localhost:8888 /" ;
155
155
const string val = "Basic async task test" ;
156
156
157
157
using ( SimpleServer . Create ( baseUrl , Handlers . EchoValue ( val ) ) )
@@ -170,7 +170,7 @@ public void Can_Cancel_GET_TaskAsync()
170
170
[ Fact ]
171
171
public void Can_Cancel_GET_TaskAsync_With_Response_Type ( )
172
172
{
173
- const string baseUrl = "http://localhost:8080 /" ;
173
+ const string baseUrl = "http://localhost:8888 /" ;
174
174
const string val = "Basic async task test" ;
175
175
176
176
using ( SimpleServer . Create ( baseUrl , Handlers . EchoValue ( val ) ) )
@@ -189,7 +189,7 @@ public void Can_Cancel_GET_TaskAsync_With_Response_Type()
189
189
[ Fact ]
190
190
public void Handles_GET_Request_Errors_TaskAsync ( )
191
191
{
192
- const string baseUrl = "http://localhost:8080 /" ;
192
+ const string baseUrl = "http://localhost:8888 /" ;
193
193
194
194
using ( SimpleServer . Create ( baseUrl , UrlToStatusCodeHandler ) )
195
195
{
@@ -206,7 +206,7 @@ public void Handles_GET_Request_Errors_TaskAsync()
206
206
[ Fact ]
207
207
public void Handles_GET_Request_Errors_TaskAsync_With_Response_Type ( )
208
208
{
209
- const string baseUrl = "http://localhost:8080 /" ;
209
+ const string baseUrl = "http://localhost:8888 /" ;
210
210
211
211
using ( SimpleServer . Create ( baseUrl , UrlToStatusCodeHandler ) )
212
212
{
@@ -223,7 +223,7 @@ public void Handles_GET_Request_Errors_TaskAsync_With_Response_Type()
223
223
[ Fact ]
224
224
public void Can_Timeout_GET_TaskAsync ( )
225
225
{
226
- const string baseUrl = "http://localhost:8080 /" ;
226
+ const string baseUrl = "http://localhost:8888 /" ;
227
227
228
228
using ( SimpleServer . Create ( baseUrl , Handlers . Generic < ResponseHandler > ( ) ) )
229
229
{
@@ -248,7 +248,7 @@ public void Can_Timeout_GET_TaskAsync()
248
248
[ Fact ]
249
249
public void Can_Timeout_PUT_TaskAsync ( )
250
250
{
251
- const string baseUrl = "http://localhost:8080 /" ;
251
+ const string baseUrl = "http://localhost:8888 /" ;
252
252
253
253
using ( SimpleServer . Create ( baseUrl , Handlers . Generic < ResponseHandler > ( ) ) )
254
254
{
0 commit comments