@@ -19,7 +19,7 @@ public CustomMiddlewareTests()
19
19
}
20
20
21
21
[ Fact ]
22
- public void should_call_pre_query_string_builder_middleware ( )
22
+ public void Should_call_pre_query_string_builder_middleware ( )
23
23
{
24
24
var configuration = new OcelotPipelineConfiguration
25
25
{
@@ -64,7 +64,7 @@ public void should_call_pre_query_string_builder_middleware()
64
64
}
65
65
66
66
[ Fact ]
67
- public void should_call_authorization_middleware ( )
67
+ public void Should_call_authorization_middleware ( )
68
68
{
69
69
var configuration = new OcelotPipelineConfiguration
70
70
{
@@ -109,7 +109,7 @@ public void should_call_authorization_middleware()
109
109
}
110
110
111
111
[ Fact ]
112
- public void should_call_authentication_middleware ( )
112
+ public void Should_call_authentication_middleware ( )
113
113
{
114
114
var configuration = new OcelotPipelineConfiguration
115
115
{
@@ -154,7 +154,7 @@ public void should_call_authentication_middleware()
154
154
}
155
155
156
156
[ Fact ]
157
- public void should_call_pre_error_middleware ( )
157
+ public void Should_call_pre_error_middleware ( )
158
158
{
159
159
var configuration = new OcelotPipelineConfiguration
160
160
{
@@ -199,7 +199,7 @@ public void should_call_pre_error_middleware()
199
199
}
200
200
201
201
[ Fact ]
202
- public void should_call_pre_authorization_middleware ( )
202
+ public void Should_call_pre_authorization_middleware ( )
203
203
{
204
204
var configuration = new OcelotPipelineConfiguration
205
205
{
@@ -244,7 +244,7 @@ public void should_call_pre_authorization_middleware()
244
244
}
245
245
246
246
[ Fact ]
247
- public void should_call_after_authorization_middleware ( )
247
+ public void Should_call_after_authorization_middleware ( )
248
248
{
249
249
var configuration = new OcelotPipelineConfiguration
250
250
{
@@ -289,7 +289,7 @@ public void should_call_after_authorization_middleware()
289
289
}
290
290
291
291
[ Fact ]
292
- public void should_call_pre_http_authentication_middleware ( )
292
+ public void Should_call_pre_http_authentication_middleware ( )
293
293
{
294
294
var configuration = new OcelotPipelineConfiguration
295
295
{
@@ -380,7 +380,7 @@ public void should_not_throw_when_pipeline_terminates_early()
380
380
}
381
381
382
382
[ Fact ]
383
- public void should_call_after_http_authentication_middleware ( )
383
+ public void Should_call_after_http_authentication_middleware ( )
384
384
{
385
385
var configuration = new OcelotPipelineConfiguration
386
386
{
@@ -425,7 +425,7 @@ public void should_call_after_http_authentication_middleware()
425
425
}
426
426
427
427
[ Fact ( Skip = "This is just an example to show how you could hook into Ocelot pipeline with your own middleware. At the moment you must use Response.OnCompleted callback and cannot change the response :( I will see if this can be changed one day!" ) ]
428
- public void should_fix_issue_237 ( )
428
+ public void Should_fix_issue_237 ( )
429
429
{
430
430
Func < object , Task > callback = state =>
431
431
{
0 commit comments