You are here

abstract class AbstractMockTestClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractMockTestClass.php \AbstractMockTestClass

Hierarchy

Expanded class hierarchy of AbstractMockTestClass

4 string references to 'AbstractMockTestClass'
Framework_MockObjectTest::testGetMockForAbstractClass in vendor/phpunit/phpunit-mock-objects/tests/MockObjectTest.php
Framework_MockObject_GeneratorTest::testGetMockForAbstractClassShouldCreateStubsOnlyForAbstractMethodWhenNoMethodsWereInformed in vendor/phpunit/phpunit-mock-objects/tests/GeneratorTest.php
@covers PHPUnit_Framework_MockObject_Generator::getMockForAbstractClass
Framework_MockObject_GeneratorTest::testGetMockForAbstractClassStubbingAbstractClass in vendor/phpunit/phpunit-mock-objects/tests/GeneratorTest.php
@covers PHPUnit_Framework_MockObject_Generator::getMockForAbstractClass
Framework_MockObject_GeneratorTest::testGetMockForAbstractClassWithNonExistentMethods in vendor/phpunit/phpunit-mock-objects/tests/GeneratorTest.php
@covers PHPUnit_Framework_MockObject_Generator::getMockForAbstractClass

File

vendor/phpunit/phpunit-mock-objects/tests/_fixture/AbstractMockTestClass.php, line 2

View source
abstract class AbstractMockTestClass implements MockTestInterface {
  public abstract function doSomething();
  public function returnAnything() {
    return 1;
  }

}

Members