mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6537 201d5d3c-b55e-5fd7-737f-ddc643e51545
23 lines
678 B
PHP
23 lines
678 B
PHP
<?php
|
|
define('__ZBXE__', true);
|
|
require_once('../config/config.inc.php');
|
|
|
|
if(__ENABLE_PHPUNIT_TEST__!=1) exit();
|
|
|
|
require_once('simpletest/autorun.php');
|
|
|
|
class AllTests extends TestSuite {
|
|
function AllTests() {
|
|
$oContext = &Context::getInstance();
|
|
$oContext->init();
|
|
|
|
$this->TestSuite('Classes Test');
|
|
$this->addFile(dirname(__FILE__).'/classes/context/Context.test.php');
|
|
|
|
$this->TestSuite('Module Test');
|
|
$this->addFile(dirname(__FILE__).'/modules/module/module.test.php');
|
|
$this->addFile(dirname(__FILE__).'/modules/module/opage.test.php');
|
|
}
|
|
}
|
|
|
|
?>
|