From 05defe72d8739c0642c506175c0ad4de2293fb99 Mon Sep 17 00:00:00 2001 From: cweiske Date: Sun, 25 Oct 2009 15:31:31 +0000 Subject: 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 --- tests/Tag2TagTest.php | 57 ++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 47 insertions(+), 10 deletions(-) (limited to 'tests/Tag2TagTest.php') diff --git a/tests/Tag2TagTest.php b/tests/Tag2TagTest.php index 8b23040..8a19823 100644 --- a/tests/Tag2TagTest.php +++ b/tests/Tag2TagTest.php @@ -1,24 +1,57 @@ + * @license GPL http://www.gnu.org/licenses/gpl.html + * @link http://sourceforge.net/projects/semanticscuttle */ -class Tag2TagTest extends PHPUnit_Framework_TestCase +require_once 'prepare.php'; + +if (!defined('PHPUnit_MAIN_METHOD')) { + define('PHPUnit_MAIN_METHOD', 'Tag2TagTest::main'); +} + +/** + * Unit tests for the SemanticScuttle tag2tag service. + * + * @category Bookmarking + * @package SemanticScuttle + * @author Christian Weiske + * @license GPL http://www.gnu.org/licenses/gpl.html + * @link http://sourceforge.net/projects/semanticscuttle + */ +class Tag2TagTest extends TestBase { protected $us; protected $bs; 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; - require_once dirname(__FILE__) . '/../src/SemanticScuttle/header.php'; - $this->us =SemanticScuttle_Service_Factory::get('User'); $this->bs =SemanticScuttle_Service_Factory::get('Bookmark'); $this->bs->deleteAll(); @@ -482,4 +515,8 @@ class Tag2TagTest extends PHPUnit_Framework_TestCase }*/ } + +if (PHPUnit_MAIN_METHOD == 'Tag2TagTest::main') { + Tag2TagTest::main(); +} ?> -- cgit v1.2.3-54-g00ecf