1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * A simple set of tests for the main API.
- * @author Ivan Tcholakov, 2009.
- * For licensing terms, see /dokeos_license.txt
- */
- $_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=' . api_get_system_encoding());
- 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 MainApiTests extends TestSuite {
- function MainApiTests() {
- $this->TestSuite('Main API Tests');
- global $_test_sys_library_path;
- $this->addTestFile($_test_sys_library_path.'main_api.lib.test_standalone.php');
- }
- }
- $test = & new MainApiTests();
- //$test-> run( new HtmlReporter());
|