public function testOriginalConstructorSettingConsidered() {
$mock1 = $this
->getMock('PartialMockTestClass');
$mock2 = $this
->getMock('PartialMockTestClass', array(), array(), '', FALSE);
$this
->assertTrue($mock1->constructorCalled);
$this
->assertFalse($mock2->constructorCalled);
}