@@ -53,8 +53,7 @@ public function testLoadThrowsInvalidArgumentExceptionIfFileIsNotALocalStream()
53
53
$ procedureFactory = $ this ->getProcedureFactory ();
54
54
$ fileLocator = $ this ->getFileLocator ();
55
55
56
- $ fileLocator ->expects ($ this ->any ())
57
- ->method ('locate ' )
56
+ $ fileLocator ->method ('locate ' )
58
57
->will ($ this ->returnValue ('http://example.com/index.html ' ));
59
58
60
59
$ procedureLoader = $ this ->getProcedureLoader ($ procedureFactory , $ fileLocator );
@@ -75,8 +74,7 @@ public function testLoadThrowsNotExistsExceptionIfFileDoesNotExist()
75
74
$ procedureFactory = $ this ->getProcedureFactory ();
76
75
$ fileLocator = $ this ->getFileLocator ();
77
76
78
- $ fileLocator ->expects ($ this ->any ())
79
- ->method ('locate ' )
77
+ $ fileLocator ->method ('locate ' )
80
78
->will ($ this ->returnValue ('/invalid/file.proc ' ));
81
79
82
80
$ procedureLoader = $ this ->getProcedureLoader ($ procedureFactory , $ fileLocator );
@@ -98,12 +96,10 @@ public function testLoadReturnsProcedureInstance()
98
96
$ fileLocator = $ this ->getFileLocator ();
99
97
$ procedure = $ this ->getProcedure ();
100
98
101
- $ fileLocator ->expects ($ this ->any ())
102
- ->method ('locate ' )
99
+ $ fileLocator ->method ('locate ' )
103
100
->will ($ this ->returnValue ($ file ));
104
101
105
- $ procedureFactory ->expects ($ this ->any ())
106
- ->method ('createProcedure ' )
102
+ $ procedureFactory ->method ('createProcedure ' )
107
103
->will ($ this ->returnValue ($ procedure ));
108
104
109
105
$ procedureLoader = $ this ->getProcedureLoader ($ procedureFactory , $ fileLocator );
@@ -127,12 +123,10 @@ public function testLoadSetsProcedureBodyInProcedureInstance()
127
123
$ fileLocator = $ this ->getFileLocator ();
128
124
$ procedure = $ this ->getProcedure ();
129
125
130
- $ fileLocator ->expects ($ this ->any ())
131
- ->method ('locate ' )
126
+ $ fileLocator ->method ('locate ' )
132
127
->will ($ this ->returnValue ($ file ));
133
128
134
- $ procedureFactory ->expects ($ this ->any ())
135
- ->method ('createProcedure ' )
129
+ $ procedureFactory ->method ('createProcedure ' )
136
130
->will ($ this ->returnValue ($ procedure ));
137
131
138
132
$ procedureLoader = $ this ->getProcedureLoader ($ procedureFactory , $ fileLocator );
0 commit comments