File tree 1 file changed +3
-3
lines changed
CSharpExt.UnitTests/Autofac
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public void ValidateEverything(Validator sut)
19
19
20
20
sut . ValidateEverything ( ) ;
21
21
22
- sut . ValidateTypes . Received ( 1 ) . Validate ( Arg . Is < IEnumerable < Type > > ( x => x . SequenceEqual ( typeof ( string ) ) ) ) ;
22
+ sut . ValidateTypes . Received ( 1 ) . Validate ( Arg . Is < IEnumerable < Type > > ( x => x . SequenceEqualToItems ( typeof ( string ) ) ) ) ;
23
23
sut . ReferenceChecker . Received ( 1 ) . Check ( ) ;
24
24
}
25
25
@@ -37,7 +37,7 @@ public void ValidateEverythingRespectsSkip(Validator sut)
37
37
38
38
sut . ValidateEverything ( ) ;
39
39
40
- sut . ValidateTypes . Received ( 1 ) . Validate ( Arg . Is < IEnumerable < Type > > ( x => x . SequenceEqual ( typeof ( string ) ) ) ) ;
40
+ sut . ValidateTypes . Received ( 1 ) . Validate ( Arg . Is < IEnumerable < Type > > ( x => x . SequenceEqualToItems ( typeof ( string ) ) ) ) ;
41
41
sut . ReferenceChecker . Received ( 1 ) . Check ( ) ;
42
42
}
43
43
@@ -51,7 +51,7 @@ public void Validate(Validator sut)
51
51
52
52
sut . Validate ( typeof ( double ) , typeof ( float ) ) ;
53
53
54
- sut . ValidateTypes . Received ( 1 ) . Validate ( Arg . Is < IEnumerable < Type > > ( x => x . SequenceEqual ( typeof ( double ) , typeof ( float ) ) ) ) ;
54
+ sut . ValidateTypes . Received ( 1 ) . Validate ( Arg . Is < IEnumerable < Type > > ( x => x . SequenceEqualToItems ( typeof ( double ) , typeof ( float ) ) ) ) ;
55
55
sut . ShouldSkip . DidNotReceiveWithAnyArgs ( ) . ShouldSkip ( default ! ) ;
56
56
sut . ReferenceChecker . Received ( 1 ) . Check ( ) ;
57
57
}
You can’t perform that action at this time.
0 commit comments