We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b9a47b + 3f5bae6 commit 66b7934Copy full SHA for 66b7934
UPGRADE.md
@@ -46,6 +46,7 @@ Examples:
46
47
PHPUnit is upgraded to PHPUnit 6. Common issues:
48
49
+- `setExpectedException()` is removed
50
```php
51
// PHPUnit 5:
52
$this->setExpectedException($class, $message);
@@ -55,5 +56,7 @@ $this->expectException($class);
55
56
$this->expectExceptionMessage($message);
57
```
58
-Tests that do not perform any assertions, will be marked as risky. This can be avoided by annotating them with ` @doesNotPerformAssertions`
59
+- Tests that do not perform any assertions, will be marked as risky. This can be avoided by annotating them with ` @doesNotPerformAssertions`
60
+
61
+- You should remove the `Mockery\Adapter\Phpunit\TestListener` in phpunit.xml.dist
62
0 commit comments