aboutsummaryrefslogtreecommitdiff
path: root/tests/TagsCacheTest.php
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-25 15:31:31 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-25 15:31:31 +0000
commit05defe72d8739c0642c506175c0ad4de2293fb99 (patch)
treed160853768776e399c95d3cf83ca3fbf24481325 /tests/TagsCacheTest.php
parent9a0aefc28bba04f674d901c6ffd6a9e63628feef (diff)
downloadsemanticscuttle-05defe72d8739c0642c506175c0ad4de2293fb99.tar.gz
semanticscuttle-05defe72d8739c0642c506175c0ad4de2293fb99.tar.bz2
introduce testbase class and make all tests runnable standalone
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@410 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'tests/TagsCacheTest.php')
-rw-r--r--tests/TagsCacheTest.php51
1 files changed, 45 insertions, 6 deletions
diff --git a/tests/TagsCacheTest.php b/tests/TagsCacheTest.php
index 8e15f2d..9230f1c 100644
--- a/tests/TagsCacheTest.php
+++ b/tests/TagsCacheTest.php
@@ -1,12 +1,31 @@
<?php
-require_once 'PHPUnit/Framework.php';
-
-/*
- To launch this test, type the following line into a shell
- at the root of the scuttlePlus directory :
- phpunit TagsCacheTest tests/tagsCacheTest.php
+/**
+ * SemanticScuttle - your social bookmark manager.
+ *
+ * PHP version 5.
+ *
+ * @category Bookmarking
+ * @package SemanticScuttle
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @license GPL http://www.gnu.org/licenses/gpl.html
+ * @link http://sourceforge.net/projects/semanticscuttle
*/
+require_once 'prepare.php';
+
+if (!defined('PHPUnit_MAIN_METHOD')) {
+ define('PHPUnit_MAIN_METHOD', 'TagsCacheTest::main');
+}
+
+/**
+ * Unit tests for the SemanticScuttle tags cache service.
+ *
+ * @category Bookmarking
+ * @package SemanticScuttle
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @license GPL http://www.gnu.org/licenses/gpl.html
+ * @link http://sourceforge.net/projects/semanticscuttle
+ */
class TagsCacheTest extends PHPUnit_Framework_TestCase
{
protected $us;
@@ -14,6 +33,21 @@ class TagsCacheTest extends PHPUnit_Framework_TestCase
protected $b2ts;
protected $tts;
+
+
+ /**
+ * 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__)
+ );
+ }
+
protected function setUp()
{
global $dbhost, $dbuser, $dbpass, $dbname, $dbport, $dbpersist, $dbtype, $tableprefix, $TEMPLATES_DIR, $debugMode;
@@ -173,4 +207,9 @@ class TagsCacheTest extends PHPUnit_Framework_TestCase
$this->assertEquals(array(), $tcs->getSynonyms('d', 1));
}
}
+
+if (PHPUnit_MAIN_METHOD == 'TagsCacheTest::main') {
+ TagsCacheTest::main();
+}
+
?>