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