40 lines
1.3 KiB
PHP
40 lines
1.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/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 classzip_fileTest extends PHPUnit_Framework_TestCase
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @covers zip_file::zip_file
|
||
|
|
* @todo Implement testzip_file().
|
||
|
|
*/
|
||
|
|
public function testzip_file()
|
||
|
|
{
|
||
|
|
if (class_exists('zip_file')) {
|
||
|
|
$methods = get_class_methods( 'zip_file');
|
||
|
|
$this->assertTrue( in_array( 'zip_file', $methods ), 'seems like this function is outside this class' );
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @covers zip_file::create_zip
|
||
|
|
* @todo Implement testcreate_zip().
|
||
|
|
*/
|
||
|
|
public function testcreate_zip()
|
||
|
|
{
|
||
|
|
if (class_exists('zip_file')) {
|
||
|
|
$methods = get_class_methods( 'zip_file');
|
||
|
|
$this->assertTrue( in_array( 'create_zip', $methods ), 'seems like this function is outside this class' );
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|