1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * A standalone test for testing the function rmdirr()
- * @author Ivan Tcholakov, September 2009.
- * @package chamilo.tests
- */
- /**
- * Init
- */
- //ini_set('memory_limit','128M');
- $_current_dir = dirname(__FILE__).'/';
- $_sys_code_path = $_current_dir.'../main/';
- $_sys_include_path = $_sys_code_path.'inc/';
- $_sys_library_path = $_sys_code_path.'inc/lib/';
- $_test_sys_code_path = $_current_dir.'main/';
- $_test_sys_include_path = $_test_sys_code_path.'inc/';
- $_test_sys_library_path = $_test_sys_code_path.'inc/lib/';
- require_once($_current_dir.'simpletest/unit_tester.php');
- require_once($_sys_include_path.'global.inc.php');
- //header('Content-Type: text/html; charset=' . $charset);
- header('Content-Type: text/html; charset=' . 'UTF-8');
- require_once($_current_dir.'simpletest/web_tester.php');
- require_once($_current_dir.'simpletest/mock_objects.php');
- require_once($_current_dir.'simpletest/autorun.php');
- $_SESSION['_user']['user_id'] = 1;
- class RmDirRTests extends TestSuite {
- function RmDirRTests() {
- $this->TestSuite('Testing the function rmdirr()');
- global $_test_sys_library_path;
- $this->addTestFile($_test_sys_library_path.'rmdirr.lib.test.php');
- }
- }
- $test = & new RmDirRTests();
- //$test-> run( new HtmlReporter());
- ?>
|