mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6001 201d5d3c-b55e-5fd7-737f-ddc643e51545
13 lines
No EOL
378 B
PHP
13 lines
No EOL
378 B
PHP
<?php
|
|
require_once(dirname(__FILE__) . '/../autorun.php');
|
|
require_once(dirname(__FILE__) . '/support/test1.php');
|
|
|
|
class LoadIfIncludedTestCase extends UnitTestCase {
|
|
function test_load_if_included() {
|
|
$tests = new GroupTest();
|
|
$tests->addFile(dirname(__FILE__) . '/support/test1.php');
|
|
$this->assertEqual($tests->getSize(), 1);
|
|
}
|
|
}
|
|
|
|
?>
|