Usages of @expectedException*
annotations MUST be replaced by
->setExpectedException*
methods.
Risky when PHPUnit classes are overridden or not accessible, or when project has PHPUnit incompatibilities.
Target version of PHPUnit.
Allowed values: '3.2'
, '4.3'
and 'newest'
Default value: 'newest'
Use ::class notation.
Allowed types: bool
Default value: true
Default configuration.
--- Original
+++ New
<?php
final class MyTest extends \PHPUnit_Framework_TestCase
{
/**
- * @expectedException FooException
- * @expectedExceptionMessageRegExp /foo.*$/
- * @expectedExceptionCode 123
*/
function testAaa()
{
+ $this->setExpectedExceptionRegExp(\FooException::class, '/foo.*$/', 123);
+
aaa();
}
}
With configuration: ['target' => '3.2']
.
--- Original
+++ New
<?php
final class MyTest extends \PHPUnit_Framework_TestCase
{
/**
- * @expectedException FooException
- * @expectedExceptionCode 123
*/
function testBbb()
{
+ $this->setExpectedException(\FooException::class, null, 123);
+
bbb();
}
/**
* @expectedException FooException
* @expectedExceptionMessageRegExp /foo.*$/
*/
function testCcc()
{
ccc();
}
}
The rule is part of the following rule sets:
@PHPUnit32Migration:risky with config:
['target' => '3.2']
@PHPUnit35Migration:risky with config:
['target' => '3.2']
@PHPUnit43Migration:risky with config:
['target' => '4.3']
@PHPUnit48Migration:risky with config:
['target' => '4.3']
@PHPUnit50Migration:risky with config:
['target' => '4.3']
@PHPUnit52Migration:risky with config:
['target' => '4.3']
@PHPUnit54Migration:risky with config:
['target' => '4.3']
@PHPUnit55Migration:risky with config:
['target' => '4.3']
@PHPUnit56Migration:risky with config:
['target' => '4.3']
@PHPUnit57Migration:risky with config:
['target' => '4.3']
@PHPUnit60Migration:risky with config:
['target' => '4.3']
@PHPUnit75Migration:risky with config:
['target' => '4.3']
@PHPUnit84Migration:risky with config:
['target' => '4.3']
@PHPUnit100Migration:risky with config:
['target' => '4.3']
PhpCsFixer\Fixer\PhpUnit\PhpUnitNoExpectationAnnotationFixer