public function Framework_MockObject_GeneratorTest::testGetMockForAbstractClassStubbingAbstractClass

@covers PHPUnit_Framework_MockObject_Generator::getMockForAbstractClass

File

drupal/core/vendor/phpunit/phpunit-mock-objects/Tests/GeneratorTest.php, line 44

Class

Framework_MockObject_GeneratorTest

Code

public function testGetMockForAbstractClassStubbingAbstractClass() {
  $mock = PHPUnit_Framework_MockObject_Generator::getMockForAbstractClass('AbstractMockTestClass');
  $this
    ->assertTrue(method_exists($mock, 'doSomething'));
}