Files
faveo/vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php
2015-05-01 13:13:01 +05:30

19 lines
261 B
PHP

<?php
class PartialMockTestClass
{
public $constructorCalled = FALSE;
public function __construct()
{
$this->constructorCalled = TRUE;
}
public function doSomething()
{
}
public function doAnotherThing()
{
}
}