stub = $this->getMockForAbstractClass('PropertyItem'); } /** * tearDown for test cases * * @return void */ public function tearDown() { unset($this->stub); } /** * Test for PropertyItem::getGroup * * @return void */ public function testGetGroup() { $this->assertEquals( null, $this->stub->getGroup() ); } } ?>