class PartialMockTestClass in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php \PartialMockTestClass
Hierarchy
- class \PartialMockTestClass
Expanded class hierarchy of PartialMockTestClass
4 string references to 'PartialMockTestClass'
- Framework_MockObjectTest::testMockClassDifferentForPartialMocks in vendor/
phpunit/ phpunit-mock-objects/ tests/ MockObjectTest.php - Framework_MockObjectTest::testMockClassStoreOverrulable in vendor/
phpunit/ phpunit-mock-objects/ tests/ MockObjectTest.php - Framework_MockObjectTest::testOriginalCloneSettingConsidered in vendor/
phpunit/ phpunit-mock-objects/ tests/ MockObjectTest.php - Framework_MockObjectTest::testOriginalConstructorSettingConsidered in vendor/
phpunit/ phpunit-mock-objects/ tests/ MockObjectTest.php
File
- vendor/
phpunit/ phpunit-mock-objects/ tests/ _fixture/ PartialMockTestClass.php, line 2
View source
class PartialMockTestClass {
public $constructorCalled = false;
public function __construct() {
$this->constructorCalled = true;
}
public function doSomething() {
}
public function doAnotherThing() {
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PartialMockTestClass:: |
public | property | ||
PartialMockTestClass:: |
public | function | ||
PartialMockTestClass:: |
public | function | ||
PartialMockTestClass:: |
public | function |