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

38 lines
1.2 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.functionTest.php';
/**
* Generated by ProcessMaker Test Unit Generator on 2012-05-10 at 20:39:54.
*/
class classfunctionTestTest extends PHPUnit_Framework_TestCase
{
/**
* @covers functionTest::functionTest
* @todo Implement testfunctionTest().
*/
public function testfunctionTest()
{
if (class_exists('functionTest')) {
$methods = get_class_methods( 'functionTest');
$this->assertTrue( in_array( 'functionTest', $methods ), 'seems like this function is outside this class' );
}
}
/**
* @covers functionTest::sample
* @todo Implement testsample().
*/
public function testsample()
{
if (class_exists('functionTest')) {
$methods = get_class_methods( 'functionTest');
$this->assertTrue( in_array( 'sample', $methods ), 'seems like this function is outside this class' );
}
}
}