aboutsummaryrefslogtreecommitdiff
path: root/tests/AllTests.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-04-12 09:29:59 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-04-12 09:29:59 +0200
commitbdebe6598c52a74f7040e3a11198b3554fa58f54 (patch)
tree9f9c2c6f79a4a76adb8371bd5bc5fd90108eae0f /tests/AllTests.php
parent90f29d6e671f4c24f75bdc4774f223c53bf0a46c (diff)
downloadsemanticscuttle-bdebe6598c52a74f7040e3a11198b3554fa58f54.tar.gz
semanticscuttle-bdebe6598c52a74f7040e3a11198b3554fa58f54.tar.bz2
use bootstrap file declared in phpunit.xml and do not include it in every single test file. also get rid of the PHPUnit_MAIN_METHOD declarations since using phpunit directly is preferred
Diffstat (limited to 'tests/AllTests.php')
-rw-r--r--tests/AllTests.php25
1 files changed, 2 insertions, 23 deletions
diff --git a/tests/AllTests.php b/tests/AllTests.php
index 4afcc6b..9e825e8 100644
--- a/tests/AllTests.php
+++ b/tests/AllTests.php
@@ -12,23 +12,15 @@
* @license GPL http://www.gnu.org/licenses/gpl.html
* @link http://sourceforge.net/projects/semanticscuttle
*/
-if (!defined('PHPUnit_MAIN_METHOD')) {
- define('PHPUnit_MAIN_METHOD', 'AllTests::main');
-}
-
-require_once 'prepare.php';
/**
* SemanticScuttle unit tests.
*
* To launch this tests, you need PHPUnit 3.
* Run them with:
- * $ php tests/AllTests.php
+ * $ cd tests; phpunit .
* or single files like:
- * $ php tests/BookmarkTest.php
- *
- * You also may use phpunit directly:
- * $ phpunit tests/AllTests.php
+ * $ cd tests; phpunit BookmarkTest.php
*
* @category Bookmarking
* @package SemanticScuttle
@@ -40,14 +32,6 @@ require_once 'prepare.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();
@@ -74,9 +58,4 @@ class AllTests extends PHPUnit_Framework_TestSuite
{
}
}
-
-if (PHPUnit_MAIN_METHOD == 'AllTests::main') {
- AllTests::main();
-}
-
?> \ No newline at end of file