@@ -30,13 +30,13 @@ protected abstract IEnumerable<string> InitialArguments
3030 [ Fact ]
3131 public async Task TestConstantMessage_Field_PassAsync ( )
3232 {
33- await this . TestConstantMessage_Field_PassAsync ( "\" foo \" " ) . ConfigureAwait ( false ) ;
33+ await this . TestConstantMessage_Field_PassExecuterAsync ( "\" foo \" " ) . ConfigureAwait ( false ) ;
3434 }
3535
3636 [ Fact ]
3737 public async Task TestConstantMessage_Field_PassExpressionAsync ( )
3838 {
39- await this . TestConstantMessage_Field_PassAsync ( "\" \" + \" foo\" + \" \" " ) . ConfigureAwait ( false ) ;
39+ await this . TestConstantMessage_Field_PassExecuterAsync ( "\" \" + \" foo\" + \" \" " ) . ConfigureAwait ( false ) ;
4040 }
4141
4242 [ Fact ]
@@ -54,19 +54,19 @@ public async Task TestConstantMessage_Field_PassWrongTypeAsync()
5454 } ,
5555 } ;
5656
57- await this . TestConstantMessage_Field_PassAsync ( "3" , expected ) . ConfigureAwait ( false ) ;
57+ await this . TestConstantMessage_Field_PassExecuterAsync ( "3" , expected ) . ConfigureAwait ( false ) ;
5858 }
5959
6060 [ Fact ]
6161 public async Task TestConstantMessage_Local_PassAsync ( )
6262 {
63- await this . TestConstantMessage_Local_PassAsync ( "\" foo \" " ) . ConfigureAwait ( false ) ;
63+ await this . TestConstantMessage_Local_PassExecuterAsync ( "\" foo \" " ) . ConfigureAwait ( false ) ;
6464 }
6565
6666 [ Fact ]
6767 public async Task TestConstantMessage_Local_PassExpressionAsync ( )
6868 {
69- await this . TestConstantMessage_Local_PassAsync ( "\" \" + \" foo\" + \" \" " ) . ConfigureAwait ( false ) ;
69+ await this . TestConstantMessage_Local_PassExecuterAsync ( "\" \" + \" foo\" + \" \" " ) . ConfigureAwait ( false ) ;
7070 }
7171
7272 [ Fact ]
@@ -84,19 +84,19 @@ public async Task TestConstantMessage_Local_PassWrongTypeAsync()
8484 } ,
8585 } ;
8686
87- await this . TestConstantMessage_Local_PassAsync ( "3" , expected ) . ConfigureAwait ( false ) ;
87+ await this . TestConstantMessage_Local_PassExecuterAsync ( "3" , expected ) . ConfigureAwait ( false ) ;
8888 }
8989
9090 [ Fact ]
9191 public async Task TestConstantMessage_Inline_PassAsync ( )
9292 {
93- await this . TestConstantMessage_Inline_PassAsync ( "\" foo \" " ) . ConfigureAwait ( false ) ;
93+ await this . TestConstantMessage_Inline_PassExecuterAsync ( "\" foo \" " ) . ConfigureAwait ( false ) ;
9494 }
9595
9696 [ Fact ]
9797 public async Task TestConstantMessage_Inline_PassExpressionAsync ( )
9898 {
99- await this . TestConstantMessage_Inline_PassAsync ( "\" \" + \" foo\" + \" \" " ) . ConfigureAwait ( false ) ;
99+ await this . TestConstantMessage_Inline_PassExecuterAsync ( "\" \" + \" foo\" + \" \" " ) . ConfigureAwait ( false ) ;
100100 }
101101
102102 [ Fact ]
@@ -114,7 +114,7 @@ public async Task TestConstantMessage_Inline_PassWrongTypeAsync()
114114 } ,
115115 } ;
116116
117- await this . TestConstantMessage_Inline_PassAsync ( "3" , expected ) . ConfigureAwait ( false ) ;
117+ await this . TestConstantMessage_Inline_PassExecuterAsync ( "3" , expected ) . ConfigureAwait ( false ) ;
118118 }
119119
120120 [ Fact ]
@@ -315,7 +315,7 @@ protected override Solution CreateSolution(ProjectId projectId, string language)
315315 }
316316 }
317317
318- private async Task TestConstantMessage_Field_PassAsync ( string argument , params DiagnosticResult [ ] expected )
318+ private async Task TestConstantMessage_Field_PassExecuterAsync ( string argument , params DiagnosticResult [ ] expected )
319319 {
320320 var testCodeFormat = @"using System.Diagnostics;
321321public class Foo
@@ -330,7 +330,7 @@ public void Bar()
330330 await this . VerifyCSharpDiagnosticAsync ( string . Format ( this . BuildTestCode ( testCodeFormat ) , argument ) , expected , CancellationToken . None ) . ConfigureAwait ( false ) ;
331331 }
332332
333- private async Task TestConstantMessage_Local_PassAsync ( string argument , params DiagnosticResult [ ] expected )
333+ private async Task TestConstantMessage_Local_PassExecuterAsync ( string argument , params DiagnosticResult [ ] expected )
334334 {
335335 var testCodeFormat = @"using System.Diagnostics;
336336public class Foo
@@ -345,7 +345,7 @@ public void Bar()
345345 await this . VerifyCSharpDiagnosticAsync ( string . Format ( this . BuildTestCode ( testCodeFormat ) , argument ) , expected , CancellationToken . None ) . ConfigureAwait ( false ) ;
346346 }
347347
348- private async Task TestConstantMessage_Inline_PassAsync ( string argument , params DiagnosticResult [ ] expected )
348+ private async Task TestConstantMessage_Inline_PassExecuterAsync ( string argument , params DiagnosticResult [ ] expected )
349349 {
350350 var testCodeFormat = @"using System.Diagnostics;
351351public class Foo
0 commit comments