Files
luos/tests/workflow/engine/classes/classbzip_fileTest.php
2012-05-10 20:57:25 -04:00

52 lines
1.7 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/thirdparty/propel/Propel.php' ;
require_once PATH_TRUNK . 'gulliver/thirdparty/creole/Creole.php' ;
require_once PATH_TRUNK . 'workflow/engine/classes/class.archive.php';
/**
* Generated by ProcessMaker Test Unit Generator on 2012-05-10 at 20:56:17.
*/
class classbzip_fileTest extends PHPUnit_Framework_TestCase
{
/**
* @covers bzip_file::bzip_file
* @todo Implement testbzip_file().
*/
public function testbzip_file()
{
if (class_exists('bzip_file')) {
$methods = get_class_methods( 'bzip_file');
$this->assertTrue( in_array( 'bzip_file', $methods ), 'seems like this function is outside this class' );
}
}
/**
* @covers bzip_file::create_bzip
* @todo Implement testcreate_bzip().
*/
public function testcreate_bzip()
{
if (class_exists('bzip_file')) {
$methods = get_class_methods( 'bzip_file');
$this->assertTrue( in_array( 'create_bzip', $methods ), 'seems like this function is outside this class' );
}
}
/**
* @covers bzip_file::open_archive
* @todo Implement testopen_archive().
*/
public function testopen_archive()
{
if (class_exists('bzip_file')) {
$methods = get_class_methods( 'bzip_file');
$this->assertTrue( in_array( 'open_archive', $methods ), 'seems like this function is outside this class' );
}
}
}