Find a Rector rule
Find the best Rector rule to solve your problem. Searching through 1005 rules.
Found 4 rules, grouped by set: Clear
phpunit/phpunit 5
4 matches
GetMockRector
phpunit/phpunit >=5.4
Turns getMock*() methods to createMock()
use PHPUnit\Framework\TestCase;
final class SomeTest extends TestCase
{
public function test()
{
- $classMock = $this->getMock("Class");
+ $classMock = $this->createMock("Class");
}
}
GetMockBuilderGetMockToCreateMockRector
phpunit/phpunit >=5.4
Remove getMockBuilder() to createMock()
use PHPUnit\Framework\TestCase;
final class SomeTest extends TestCase
{
public function test()
{
- $applicationMock = $this->getMockBuilder('SomeClass')
- ->disableOriginalConstructor()
- ->getMock();
+ $applicationMock = $this->createMock('SomeClass');
}
}
DelegateExceptionArgumentsRector
phpunit/phpunit >=5.2
Takes setExpectedException() 2nd and next arguments to own methods in PHPUnit.
use PHPUnit\Framework\TestCase;
class SomeTest extends TestCase
{
public function test()
{
- $this->setExpectedException(SomeException::class, "Message", "CODE");
+ $this->setExpectedException(SomeException::class);
+ $this->expectExceptionMessage('Message');
+ $this->expectExceptionCode('CODE');
}
}
ExceptionAnnotationRector
phpunit/phpunit >=5.2
Changes @expectedException annotations to expectException*()` methods
-/**
- * @expectedException Exception
- * @expectedExceptionMessage Message
- */
public function test()
{
+ $this->expectException('Exception');
+ $this->expectExceptionMessage('Message');
// tested code
}