@@ -34,7 +34,7 @@ public async Task Handle_ValidMatchingRequiredProperties()
3434 {
3535 Assert . That ( response . Count , Is . EqualTo ( 1 ) ) ;
3636 Assert . That ( response [ 0 ] . Type , Is . EqualTo ( ValidatorType . ResponsePropertyRequired ) ) ;
37- Assert . That ( response [ 0 ] . Name , Is . EqualTo ( "UnitTest - prop1" ) ) ;
37+ Assert . That ( response [ 0 ] . Name , Is . EqualTo ( "Request - UnitTest - prop1" ) ) ;
3838 Assert . That ( response [ 0 ] . ValidationResult , Is . EqualTo ( ValidationResult . Passed ) ) ;
3939 Assert . That ( response [ 0 ] . Description , Is . Null . Or . Empty ) ;
4040 } ) ;
@@ -59,7 +59,7 @@ public async Task Handle_MissingRequiredProperties()
5959 {
6060 Assert . That ( response . Count , Is . EqualTo ( 1 ) ) ;
6161 Assert . That ( response [ 0 ] . Type , Is . EqualTo ( ValidatorType . ResponsePropertyRequired ) ) ;
62- Assert . That ( response [ 0 ] . Name , Is . EqualTo ( "UnitTest - prop1" ) ) ;
62+ Assert . That ( response [ 0 ] . Name , Is . EqualTo ( "Request - UnitTest - prop1" ) ) ;
6363 Assert . That ( response [ 0 ] . ValidationResult , Is . EqualTo ( ValidationResult . Failed ) ) ;
6464 Assert . That ( response [ 0 ] . Description , Is . Not . Null . And . Contains ( "prop1" ) ) ;
6565 } ) ;
@@ -85,7 +85,7 @@ public async Task Handle_MissingOptionalProperties()
8585 {
8686 Assert . That ( response . Count , Is . EqualTo ( 1 ) ) ;
8787 Assert . That ( response [ 0 ] . Type , Is . EqualTo ( ValidatorType . ResponsePropertyRequired ) ) ;
88- Assert . That ( response [ 0 ] . Name , Is . EqualTo ( "UnitTest - prop1" ) ) ;
88+ Assert . That ( response [ 0 ] . Name , Is . EqualTo ( "Request - UnitTest - prop1" ) ) ;
8989 Assert . That ( response [ 0 ] . ValidationResult , Is . EqualTo ( ValidationResult . Warning ) ) ;
9090 Assert . That ( response [ 0 ] . Description , Is . Not . Null . And . Contains ( "prop1" ) ) ;
9191 } ) ;
@@ -115,15 +115,15 @@ public async Task Handle_MultipleMissingOptionalAndRequiredProperties()
115115 {
116116 Assert . That ( response . Count , Is . EqualTo ( 3 ) ) ;
117117 Assert . That ( response [ 0 ] . Type , Is . EqualTo ( ValidatorType . ResponsePropertyRequired ) ) ;
118- Assert . That ( response [ 0 ] . Name , Is . EqualTo ( "UnitTest - prop1" ) ) ;
118+ Assert . That ( response [ 0 ] . Name , Is . EqualTo ( "Request - UnitTest - prop1" ) ) ;
119119 Assert . That ( response [ 0 ] . ValidationResult , Is . EqualTo ( ValidationResult . Passed ) ) ;
120120 Assert . That ( response [ 0 ] . Description , Is . Null . Or . Empty ) ;
121121 Assert . That ( response [ 1 ] . Type , Is . EqualTo ( ValidatorType . ResponsePropertyRequired ) ) ;
122- Assert . That ( response [ 1 ] . Name , Is . EqualTo ( "UnitTest - Prop2" ) ) ;
122+ Assert . That ( response [ 1 ] . Name , Is . EqualTo ( "Request - UnitTest - Prop2" ) ) ;
123123 Assert . That ( response [ 1 ] . ValidationResult , Is . EqualTo ( ValidationResult . Failed ) ) ;
124124 Assert . That ( response [ 1 ] . Description , Is . Not . Null . And . Contains ( "Prop2" ) ) ;
125125 Assert . That ( response [ 2 ] . Type , Is . EqualTo ( ValidatorType . ResponsePropertyRequired ) ) ;
126- Assert . That ( response [ 2 ] . Name , Is . EqualTo ( "UnitTest - Prop3" ) ) ;
126+ Assert . That ( response [ 2 ] . Name , Is . EqualTo ( "Request - UnitTest - Prop3" ) ) ;
127127 Assert . That ( response [ 2 ] . ValidationResult , Is . EqualTo ( ValidationResult . Warning ) ) ;
128128 Assert . That ( response [ 2 ] . Description , Is . Not . Null . And . Contains ( "Prop3" ) ) ;
129129 } ) ;
0 commit comments