assertTrue( in_array( 'render', $methods ), 'seems like this function is outside this class' ); } } /** * @covers XmlForm_Field_hours::renderGrid * @todo Implement testrenderGrid(). */ public function testrenderGrid() { if (class_exists('XmlForm_Field_hours')) { $methods = get_class_methods( 'XmlForm_Field_hours'); $this->assertTrue( in_array( 'renderGrid', $methods ), 'seems like this function is outside this class' ); } } /** * @covers XmlForm_Field_hours::attachEvents * @todo Implement testattachEvents(). */ public function testattachEvents() { if (class_exists('XmlForm_Field_hours')) { $methods = get_class_methods( 'XmlForm_Field_hours'); $this->assertTrue( in_array( 'attachEvents', $methods ), 'seems like this function is outside this class' ); } } /** * @covers XmlForm_Field_hours::getDynaformsVars * @todo Implement testgetDynaformsVars(). */ public function testgetDynaformsVars() { if (class_exists('XmlForm_Field_hours')) { $methods = get_class_methods( 'XmlForm_Field_hours'); $this->assertTrue( in_array( 'getDynaformsVars', $methods ), 'seems like this function is outside this class' ); } } /** * @covers XmlForm_Field_hours::getGridsVars * @todo Implement testgetGridsVars(). */ public function testgetGridsVars() { if (class_exists('XmlForm_Field_hours')) { $methods = get_class_methods( 'XmlForm_Field_hours'); $this->assertTrue( in_array( 'getGridsVars', $methods ), 'seems like this function is outside this class' ); } } }