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