Skip to content

Commit 99882f1

Browse files
committedFeb 17, 2015
Updating PHPUnit version to ~4.0 along with some tests
1 parent d55362e commit 99882f1

File tree

6 files changed

+12
-21
lines changed

6 files changed

+12
-21
lines changed
 

‎bin/phpunit

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../vendor/phpunit/phpunit/phpunit

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"jakoch/phantomjs-installer": "1.9.7"
2323
},
2424
"require-dev": {
25-
"phpunit/phpunit": "3.7.*"
25+
"phpunit/phpunit": "~4.0"
2626
},
2727
"autoload": {
2828
"psr-0": {

‎src/JonnyW/PhantomJs/Tests/Integration/Template/TemplateRendererTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ public function testRenderInjectsParameterIntoTemplateUsingObjectMethod()
6969
$template = 'var param = {{ request.getTimeout() }}';
7070

7171
$request = $this->getRequest();
72-
$request->expects($this->any())
73-
->method('getTimeout')
72+
$request->method('getTimeout')
7473
->will($this->returnValue(5000));
7574

7675
$renderer = $this->getInjectedTemplateRenderer();

‎src/JonnyW/PhantomJs/Tests/Unit/Cache/FileCacheTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ public function testSaveThrowsNotWritableExceptionIfWriteFileReturnsFalse()
9494
$this->setExpectedException('\JonnyW\PhantomJs\Exception\NotWritableException');
9595

9696
$fileCache = $this->getMockFileCache(array('writeData'), $this->directory, 'txt');
97-
$fileCache->expects($this->any())
98-
->method('writeData')
97+
$fileCache->method('writeData')
9998
->will($this->returnValue(false));
10099

101100
$fileCache->save($this->filename, 'Test');

‎src/JonnyW/PhantomJs/Tests/Unit/Procedure/ChainProcedureLoaderTest.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ public function testLoadThrowsInvalidArgumentExceptionIfProcedureLoaderThrowsExc
5151
$this->setExpectedException('\InvalidArgumentException');
5252

5353
$procedureLoader = $this->getProcedureLoader();
54-
$procedureLoader->expects($this->any())
55-
->method('load')
54+
$procedureLoader->method('load')
5655
->will($this->throwException(new \Exception()));
5756

5857
$procedureLoaders = array(
@@ -74,8 +73,7 @@ public function testLoadReturnsInstanceOfProcedure()
7473
$procedure = $this->getProcedure();
7574

7675
$procedureLoader = $this->getProcedureLoader();
77-
$procedureLoader->expects($this->any())
78-
->method('load')
76+
$procedureLoader->method('load')
7977
->will($this->returnValue($procedure));
8078

8179
$procedureLoaders = array(

‎src/JonnyW/PhantomJs/Tests/Unit/Procedure/ProcedureLoaderTest.php

+6-12
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ public function testLoadThrowsInvalidArgumentExceptionIfFileIsNotALocalStream()
5353
$procedureFactory = $this->getProcedureFactory();
5454
$fileLocator = $this->getFileLocator();
5555

56-
$fileLocator->expects($this->any())
57-
->method('locate')
56+
$fileLocator->method('locate')
5857
->will($this->returnValue('http://example.com/index.html'));
5958

6059
$procedureLoader = $this->getProcedureLoader($procedureFactory, $fileLocator);
@@ -75,8 +74,7 @@ public function testLoadThrowsNotExistsExceptionIfFileDoesNotExist()
7574
$procedureFactory = $this->getProcedureFactory();
7675
$fileLocator = $this->getFileLocator();
7776

78-
$fileLocator->expects($this->any())
79-
->method('locate')
77+
$fileLocator->method('locate')
8078
->will($this->returnValue('/invalid/file.proc'));
8179

8280
$procedureLoader = $this->getProcedureLoader($procedureFactory, $fileLocator);
@@ -98,12 +96,10 @@ public function testLoadReturnsProcedureInstance()
9896
$fileLocator = $this->getFileLocator();
9997
$procedure = $this->getProcedure();
10098

101-
$fileLocator->expects($this->any())
102-
->method('locate')
99+
$fileLocator->method('locate')
103100
->will($this->returnValue($file));
104101

105-
$procedureFactory->expects($this->any())
106-
->method('createProcedure')
102+
$procedureFactory->method('createProcedure')
107103
->will($this->returnValue($procedure));
108104

109105
$procedureLoader = $this->getProcedureLoader($procedureFactory, $fileLocator);
@@ -127,12 +123,10 @@ public function testLoadSetsProcedureBodyInProcedureInstance()
127123
$fileLocator = $this->getFileLocator();
128124
$procedure = $this->getProcedure();
129125

130-
$fileLocator->expects($this->any())
131-
->method('locate')
126+
$fileLocator->method('locate')
132127
->will($this->returnValue($file));
133128

134-
$procedureFactory->expects($this->any())
135-
->method('createProcedure')
129+
$procedureFactory->method('createProcedure')
136130
->will($this->returnValue($procedure));
137131

138132
$procedureLoader = $this->getProcedureLoader($procedureFactory, $fileLocator);

0 commit comments

Comments
 (0)