PartialMockTestClass.php in Zircon Profile 8
Same filename and directory in other branches
File
vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.phpView source
<?php
class PartialMockTestClass {
public $constructorCalled = false;
public function __construct() {
$this->constructorCalled = true;
}
public function doSomething() {
}
public function doAnotherThing() {
}
}
Classes
Name | Description |
---|---|
PartialMockTestClass |