public function Framework_MockObject_GeneratorTest::testGetMockForAbstractClassExpectingInvalidArgumentException in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit-mock-objects/tests/GeneratorTest.php \Framework_MockObject_GeneratorTest::testGetMockForAbstractClassExpectingInvalidArgumentException()
@dataProvider getMockForAbstractClassExpectsInvalidArgumentExceptionDataprovider @covers PHPUnit_Framework_MockObject_Generator::getMockForAbstractClass @expectedException PHPUnit_Framework_Exception
File
- vendor/
phpunit/ phpunit-mock-objects/ tests/ GeneratorTest.php, line 99
Class
Code
public function testGetMockForAbstractClassExpectingInvalidArgumentException($className, $mockClassName) {
$mock = $this->generator
->getMockForAbstractClass($className, array(), $mockClassName);
}