BUG 0000 Test Units for workflow.engine.classes

This commit is contained in:
Fernando Ontiveros
2012-05-10 20:57:25 -04:00
parent 31ae1e1d36
commit 871ba8c173
89 changed files with 14729 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
<?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/thirdparty/propel/Propel.php' ;
require_once PATH_TRUNK . 'gulliver/thirdparty/creole/Creole.php' ;
require_once PATH_TRUNK . 'workflow/engine/classes/class.wsResponse.php';
/**
* Generated by ProcessMaker Test Unit Generator on 2012-05-10 at 20:56:17.
*/
class classwsCreateUserResponseTest extends PHPUnit_Framework_TestCase
{
/**
* @covers wsCreateUserResponse::__construct
* @todo Implement test__construct().
*/
public function test__construct()
{
if (class_exists('wsCreateUserResponse')) {
$methods = get_class_methods( 'wsCreateUserResponse');
$this->assertTrue( in_array( '__construct', $methods ), 'seems like this function is outside this class' );
}
}
}