Files
ExpenseCount/exp/vendor/phpunit/phpunit-mock-objects/Tests/_files/PartialMockTestClass.php
2026-06-25 13:03:45 +06:00

19 lines
261 B
PHP

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