05defe72d8
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@410 b3834d28-1941-0410-a4f8-b48e95affb8f
56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
<?php
|
|
/*
|
|
* To launch all tests, type the following line into the root directory
|
|
* of SemanticScuttle (where is the config.inc.php file) :
|
|
*
|
|
* phpunit --testdox-html tests/dox.html AllTests tests/allTests.php
|
|
*
|
|
* !!Check that $debugMode = false in config.inc.php to avoid unstable beahviours!!
|
|
*
|
|
* A dox.html file will be created into the tests/ directory providing a summary
|
|
* of tests according to agile development.
|
|
* */
|
|
|
|
if (!defined('PHPUnit_MAIN_METHOD')) {
|
|
define('PHPUnit_MAIN_METHOD', 'AllTests::main');
|
|
}
|
|
|
|
require_once 'prepare.php';
|
|
require_once 'PHPUnit/Framework/TestSuite.php';
|
|
|
|
class AllTests extends PHPUnit_Framework_TestSuite
|
|
{
|
|
public static function main()
|
|
{
|
|
require_once 'PHPUnit/TextUI/TestRunner.php';
|
|
PHPUnit_TextUI_TestRunner::run(self::suite());
|
|
}
|
|
|
|
|
|
|
|
public static function suite()
|
|
{
|
|
$suite = new AllTests();
|
|
$tdir = dirname(__FILE__);
|
|
$suite->addTestFile($tdir . '/BookmarkTest.php');
|
|
$suite->addTestFile($tdir . '/Tag2TagTest.php');
|
|
$suite->addTestFile($tdir . '/TagsCacheTest.php');
|
|
$suite->addTestFile($tdir . '/CommonDescriptionTest.php');
|
|
$suite->addTestFile($tdir . '/SearchHistoryTest.php');
|
|
$suite->addTestFile($tdir . '/TagTest.php');
|
|
$suite->addTestFile($tdir . '/VoteTest.php');
|
|
return $suite;
|
|
}
|
|
|
|
|
|
|
|
protected function tearDown()
|
|
{
|
|
}
|
|
}
|
|
|
|
if (PHPUnit_MAIN_METHOD == 'AllTests::main') {
|
|
AllTests::main();
|
|
}
|
|
|
|
?>
|