aboutsummaryrefslogtreecommitdiff
path: root/tests/SearchHistoryTest.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/SearchHistoryTest.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/SearchHistoryTest.php')
-rw-r--r--tests/SearchHistoryTest.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/SearchHistoryTest.php b/tests/SearchHistoryTest.php
index 69d1efa..f05dd29 100644
--- a/tests/SearchHistoryTest.php
+++ b/tests/SearchHistoryTest.php
@@ -12,11 +12,6 @@
* @license GPL http://www.gnu.org/licenses/gpl.html
* @link http://sourceforge.net/projects/semanticscuttle
*/
-if (!defined('PHPUnit_MAIN_METHOD')) {
- define('PHPUnit_MAIN_METHOD', 'SearchHistoryTest::main');
-}
-
-require_once 'prepare.php';
/**
* Unit tests for the SemanticScuttle search history service.
@@ -38,22 +33,6 @@ class SearchHistoryTest extends TestBase
protected $shs;
-
- /**
- * Used to run this test class standalone
- *
- * @return void
- */
- public static function main()
- {
- require_once 'PHPUnit/TextUI/TestRunner.php';
- PHPUnit_TextUI_TestRunner::run(
- new PHPUnit_Framework_TestSuite(__CLASS__)
- );
- }
-
-
-
/**
* Set up all services
*
@@ -391,10 +370,4 @@ class SearchHistoryTest extends TestBase
$this->assertEquals(0, $this->shs->countSearches());
}
}
-
-
-if (PHPUnit_MAIN_METHOD == 'SearchHistoryTest::main') {
- SearchHistoryTest::main();
-}
-
?>