assertTrue( in_array( 'XmlForm_Field_Xmlform', $methods ), 'seems like this function is outside this class' ); } } /** * @covers XmlForm_Field_Xmlform::parseFile * @todo Implement testparseFile(). */ public function testparseFile() { if (class_exists('XmlForm_Field_Xmlform')) { $methods = get_class_methods( 'XmlForm_Field_Xmlform'); $this->assertTrue( in_array( 'parseFile', $methods ), 'seems like this function is outside this class' ); } } /** * @covers XmlForm_Field_Xmlform::render * @todo Implement testrender(). */ public function testrender() { if (class_exists('XmlForm_Field_Xmlform')) { $methods = get_class_methods( 'XmlForm_Field_Xmlform'); $this->assertTrue( in_array( 'render', $methods ), 'seems like this function is outside this class' ); } } }