Files
espocrm/vendor/phpunit/phpunit-mock-objects/Tests/_files/PartialMockTestClass.php
Taras Machyshyn 417576fd5e change instance
2013-11-01 13:49:54 +02:00

19 lines
261 B
PHP
Executable File

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