PartialMockTestClass.php 261 B

12345678910111213141516171819
  1. <?php
  2. class PartialMockTestClass
  3. {
  4. public $constructorCalled = false;
  5. public function __construct()
  6. {
  7. $this->constructorCalled = true;
  8. }
  9. public function doSomething()
  10. {
  11. }
  12. public function doAnotherThing()
  13. {
  14. }
  15. }