@@ -26,11 +26,11 @@ public void FeatureMatcherGeneratesCorrectDescriptionForAllProperties(int intVal
2626 [ InlineData ( 1 , "foo" , 2 , "qux" , "failed to match one" , "boom!" ) ]
2727 [ InlineData ( 3 , "bar" , 17 , "baz" , "the world exploded" , "stack overflow" ) ]
2828 public void FeatureMatcherGeneratesCorrectMismatchDescriptionForAllFailedProperties (
29- int intVal ,
30- string stringVal ,
31- int mismatchedIntVal ,
32- string mismatchedStringVal ,
33- string mismatchedIntDescription ,
29+ int intVal ,
30+ string stringVal ,
31+ int mismatchedIntVal ,
32+ string mismatchedStringVal ,
33+ string mismatchedIntDescription ,
3434 string mismatchedStringDescription )
3535 {
3636 var sut = Describe . Object < SimpleFlatClass > ( )
@@ -143,7 +143,10 @@ public void FeatureMatcherGeneratesNestedPropertyDescriptionsCorrectly(
143143 [ Theory ]
144144 [ InlineData ( 1 , 17 , "foo" ) ]
145145 [ InlineData ( 3 , 24 , "bar" ) ]
146- public void FeatureMatcherGeneratesNestedPropertyMismatchDescriptionsCorrectly ( int intVal , int mismatchedIntVal , string mismatchIntDescription )
146+ public void FeatureMatcherGeneratesNestedPropertyMismatchDescriptionsCorrectly (
147+ int intVal ,
148+ int mismatchedIntVal ,
149+ string mismatchIntDescription )
147150 {
148151 var sut = Describe . Object < NestedClass > ( )
149152 . Property ( x => x . InnerClass . IntProperty , new FakeMatcher < int > ( false , "" , i => i == mismatchedIntVal ? mismatchIntDescription : i . ToString ( ) ) ) ;
0 commit comments