From a669a8e3569e62e542812e0620f3d0f7e53870b2 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 1 Nov 2017 08:08:42 +0100 Subject: [PATCH] Update tests --- composer.json | 2 +- tests/MockObjectTest.php | 39 +++++++++++++++++++-------------------- 2 files changed, 20 insertions(+), 21 deletions(-) diff --git a/composer.json b/composer.json index a31a583..5e68a36 100644 --- a/composer.json +++ b/composer.json @@ -26,7 +26,7 @@ "sebastian/exporter": "^3.0" }, "require-dev": { - "phpunit/phpunit": "^6.0" + "phpunit/phpunit": "^6.4.3" }, "conflict": { "phpunit/phpunit": "<6.0" diff --git a/tests/MockObjectTest.php b/tests/MockObjectTest.php index d7e74fb..a5ed90e 100644 --- a/tests/MockObjectTest.php +++ b/tests/MockObjectTest.php @@ -660,8 +660,8 @@ public function testVerificationOfMethodNameFailsWithoutParameters() $this->fail('Expected exception'); } catch (ExpectationFailedException $e) { $this->assertSame( - "Expectation failed for method name is equal to when invoked 1 time(s).\n" - . "Method was expected to be called 1 times, actually called 0 times.\n", + 'Expectation failed for method name is equal to "right" when invoked 1 time(s).' . PHP_EOL . + 'Method was expected to be called 1 times, actually called 0 times.' . PHP_EOL, $e->getMessage() ); } @@ -685,8 +685,8 @@ public function testVerificationOfMethodNameFailsWithParameters() $this->fail('Expected exception'); } catch (ExpectationFailedException $e) { $this->assertSame( - "Expectation failed for method name is equal to when invoked 1 time(s).\n" - . "Method was expected to be called 1 times, actually called 0 times.\n", + 'Expectation failed for method name is equal to "right" when invoked 1 time(s).' . PHP_EOL . + 'Method was expected to be called 1 times, actually called 0 times.' . PHP_EOL, $e->getMessage() ); } @@ -708,9 +708,9 @@ public function testVerificationOfMethodNameFailsWithWrongParameters() $mock->right(['second']); } catch (ExpectationFailedException $e) { $this->assertSame( - "Expectation failed for method name is equal to when invoked 1 time(s)\n" - . "Parameter 0 for invocation SomeClass::right(Array (...)) does not match expected value.\n" - . 'Failed asserting that two arrays are equal.', + 'Expectation failed for method name is equal to "right" when invoked 1 time(s)' . PHP_EOL . + 'Parameter 0 for invocation SomeClass::right(Array (...)) does not match expected value.' . PHP_EOL . + 'Failed asserting that two arrays are equal.', $e->getMessage() ); } @@ -720,17 +720,16 @@ public function testVerificationOfMethodNameFailsWithWrongParameters() $this->fail('Expected exception'); } catch (ExpectationFailedException $e) { $this->assertSame( - "Expectation failed for method name is equal to when invoked 1 time(s).\n" - . "Parameter 0 for invocation SomeClass::right(Array (...)) does not match expected value.\n" - . "Failed asserting that two arrays are equal.\n" - . "--- Expected\n" - . "+++ Actual\n" - . "@@ @@\n" - . " Array (\n" - . "- 0 => 'first'\n" - . "- 1 => 'second'\n" - . "+ 0 => 'second'\n" - . " )\n", + 'Expectation failed for method name is equal to "right" when invoked 1 time(s).' . PHP_EOL . + 'Parameter 0 for invocation SomeClass::right(Array (...)) does not match expected value.' . PHP_EOL . + 'Failed asserting that two arrays are equal.' . PHP_EOL . + '--- Expected' . PHP_EOL . + '+++ Actual' . PHP_EOL . + '@@ @@' . PHP_EOL . + ' Array (' . PHP_EOL . + '- 0 => \'first\'' . PHP_EOL . + '- 1 => \'second\'' . PHP_EOL . + '+ 0 => \'second\'' . PHP_EOL, $e->getMessage() ); } @@ -799,8 +798,8 @@ public function testWithAnythingInsteadOfWithAnyParameters() $this->fail('Expected exception'); } catch (ExpectationFailedException $e) { $this->assertSame( - "Expectation failed for method name is equal to when invoked 1 time(s)\n" . - "Parameter count for invocation SomeClass::right() is too low.\n" . + 'Expectation failed for method name is equal to "right" when invoked 1 time(s)' . PHP_EOL . + 'Parameter count for invocation SomeClass::right() is too low.' . PHP_EOL . 'To allow 0 or more parameters with any value, omit ->with() or use ->withAnyParameters() instead.', $e->getMessage() );