assertTrue( in_array( 'Xml_Node', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Xml_Node::addAttribute * @todo Implement testaddAttribute(). */ public function testaddAttribute() { if (class_exists('Xml_Node')) { $methods = get_class_methods( 'Xml_Node'); $this->assertTrue( in_array( 'addAttribute', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Xml_Node::addChildNode * @todo Implement testaddChildNode(). */ public function testaddChildNode() { if (class_exists('Xml_Node')) { $methods = get_class_methods( 'Xml_Node'); $this->assertTrue( in_array( 'addChildNode', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Xml_Node::toTree * @todo Implement testtoTree(). */ public function testtoTree() { if (class_exists('Xml_Node')) { $methods = get_class_methods( 'Xml_Node'); $this->assertTrue( in_array( 'toTree', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Xml_Node::toArray * @todo Implement testtoArray(). */ public function testtoArray() { if (class_exists('Xml_Node')) { $methods = get_class_methods( 'Xml_Node'); $this->assertTrue( in_array( 'toArray', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Xml_Node::findNode * @todo Implement testfindNode(). */ public function testfindNode() { if (class_exists('Xml_Node')) { $methods = get_class_methods( 'Xml_Node'); $this->assertTrue( in_array( 'findNode', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Xml_Node::getXML * @todo Implement testgetXML(). */ public function testgetXML() { if (class_exists('Xml_Node')) { $methods = get_class_methods( 'Xml_Node'); $this->assertTrue( in_array( 'getXML', $methods ), 'seems like this function is outside this class' ); } } /** * @covers Xml_Node::getCDATAValue * @todo Implement testgetCDATAValue(). */ public function testgetCDATAValue() { if (class_exists('Xml_Node')) { $methods = get_class_methods( 'Xml_Node'); $this->assertTrue( in_array( 'getCDATAValue', $methods ), 'seems like this function is outside this class' ); } } }