Files
luos/tests/gulliver/system/classXml_NodeTest.php
2012-05-10 20:51:34 -04:00

110 lines
3.3 KiB
PHP

<?php
require_once PATH_TRUNK . 'gulliver/thirdparty/smarty/libs/Smarty.class.php';
require_once PATH_TRUNK . 'gulliver/system/class.xmlform.php';
require_once PATH_TRUNK . 'gulliver/system/class.xmlDocument.php';
require_once PATH_TRUNK . 'gulliver/system/class.xmlDocument.php';
/**
* Generated by ProcessMaker Test Unit Generator on 2012-05-10 at 20:39:58.
*/
class classXml_NodeTest extends PHPUnit_Framework_TestCase
{
/**
* @covers Xml_Node::Xml_Node
* @todo Implement testXml_Node().
*/
public function testXml_Node()
{
if (class_exists('Xml_Node')) {
$methods = get_class_methods( 'Xml_Node');
$this->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' );
}
}
}