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

26 lines
859 B
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.xmlform.php';
/**
* Generated by ProcessMaker Test Unit Generator on 2012-05-10 at 20:39:57.
*/
class classXmlForm_Field_ButtonTest extends PHPUnit_Framework_TestCase
{
/**
* @covers XmlForm_Field_Button::render
* @todo Implement testrender().
*/
public function testrender()
{
if (class_exists('XmlForm_Field_Button')) {
$methods = get_class_methods( 'XmlForm_Field_Button');
$this->assertTrue( in_array( 'render', $methods ), 'seems like this function is outside this class' );
}
}
}