@@ -11,15 +11,15 @@ public class CodeFix
1111 private static readonly ExpectedDiagnostic ExpectedDiagnostic = ExpectedDiagnostic . Create ( ASP004ParameterSyntax . Descriptor ) ;
1212 private static readonly CodeFixProvider Fix = new ParameterSyntaxFix ( ) ;
1313
14- [ TestCase ( "api/orders/↓id:long}" , "api/orders/{id:long}" ) ]
15- [ TestCase ( "api/orders/↓{id:long" , "api/orders/{id:long}" ) ]
16- [ TestCase ( "api/orders/{id:min(1}" , "api/orders/{id:min(1)}" ) ]
17- [ TestCase ( "api/orders/{id:max(1}" , "api/orders/{id:max(1)}" ) ]
18- [ TestCase ( "api/orders/{id:minlength(1}" , "api/orders/{id:minlength(1)}" ) ]
19- [ TestCase ( "api/orders/{id:maxlength(1}" , "api/orders/{id:maxlength(1)}" ) ]
20- [ TestCase ( "api/orders/{id:length(1}" , "api/orders/{id:length(1)}" ) ]
21- [ TestCase ( "api/orders/{id:length(1,2}" , "api/orders/{id:length(1,2)}" ) ]
22- [ TestCase ( "api/orders/{id:range(1,2}" , "api/orders/{id:range(1,2)}" ) ]
14+ [ TestCase ( "api/orders/↓id:long}" , "api/orders/{id:long}" ) ]
15+ [ TestCase ( "api/orders/↓{id:long" , "api/orders/{id:long}" ) ]
16+ [ TestCase ( "api/orders/{id:min(1}" , "api/orders/{id:min(1)}" ) ]
17+ [ TestCase ( "api/orders/{id:max(1}" , "api/orders/{id:max(1)}" ) ]
18+ [ TestCase ( "api/orders/{id:minlength(1}" , "api/orders/{id:minlength(1)}" ) ]
19+ [ TestCase ( "api/orders/{id:maxlength(1}" , "api/orders/{id:maxlength(1)}" ) ]
20+ [ TestCase ( "api/orders/{id:length(1}" , "api/orders/{id:length(1)}" ) ]
21+ [ TestCase ( "api/orders/{id:length(1,2}" , "api/orders/{id:length(1,2)}" ) ]
22+ [ TestCase ( "api/orders/{id:range(1,2}" , "api/orders/{id:range(1,2)}" ) ]
2323 [ TestCase ( "api/orders/{id:regex((a|b)-c}" , "api/orders/{id:regex((a|b)-c)}" ) ]
2424 public void WhenFixable ( string before , string after )
2525 {
0 commit comments