mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 10:41:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6338 201d5d3c-b55e-5fd7-737f-ddc643e51545
20 lines
569 B
PHP
20 lines
569 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('XpressEngine Test');
|
|
$this->addFile(dirname(__FILE__).'/classes/context/Context.test.php');
|
|
$this->addFile(dirname(__FILE__).'/modules/module/module.test.php');
|
|
}
|
|
}
|
|
|
|
?>
|