getMockForAbstractClass('CApplicationComponent',array('init','getIsInitialized'),'',NULL); $c->expects($this->any()) ->method('getIsInitialized') ->will($this->returnValue(FALSE)); $this->assertFalse($c->getIsInitialized()); $c->init(); $this->assertTrue($c->getIsInitialized()); } }