Revision 15532,
764 bytes
checked in by nanasess, 16 years ago
(diff) |
svn:mime-type 修正
|
-
Property svn:keywords set to
Id Revision Date
-
Property svn:mime-type set to
text/x-httpd-php; charset=UTF-8
|
Line | |
---|
1 | #!/usr/local/bin/php |
---|
2 | <?php |
---|
3 | /* |
---|
4 | * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. |
---|
5 | * |
---|
6 | * http://www.lockon.co.jp/ |
---|
7 | */ |
---|
8 | |
---|
9 | // {{{ requires |
---|
10 | require_once("../html/require.php"); |
---|
11 | require_once("class/page/LC_Page_Test.php"); |
---|
12 | require_once("class/db/SC_DB_DBFactory_Test.php"); |
---|
13 | require_once("class/db/SC_DB_MasterData_Test.php"); |
---|
14 | require_once("class/helper/SC_Helper_DB_Test.php"); |
---|
15 | require_once("PHPUnit.php"); |
---|
16 | |
---|
17 | $suites = array(); |
---|
18 | $suites[0] = new PHPUnit_TestSuite("LC_Page_Test"); |
---|
19 | $suites[1] = new PHPUnit_TestSuite("SC_DB_DBFactory_Test"); |
---|
20 | $suites[2] = new PHPUnit_TestSuite("SC_DB_MasterData_Test"); |
---|
21 | $suites[3] = new PHPUnit_TestSuite("SC_Helper_DB_Test"); |
---|
22 | |
---|
23 | foreach ($suites as $suite) { |
---|
24 | $result = PHPUnit::run($suite); |
---|
25 | print $result->toString(); |
---|
26 | } |
---|
27 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.