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