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/VoteTest.php | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) (limited to 'tests/VoteTest.php') diff --git a/tests/VoteTest.php b/tests/VoteTest.php index 0196071..90611d1 100644 --- a/tests/VoteTest.php +++ b/tests/VoteTest.php @@ -12,7 +12,6 @@ */ require_once 'prepare.php'; -require_once 'PHPUnit/Framework.php'; if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'VoteTest::main'); @@ -27,7 +26,7 @@ if (!defined('PHPUnit_MAIN_METHOD')) { * @license GPL http://www.gnu.org/licenses/gpl.html * @link http://sourceforge.net/projects/semanticscuttle */ -class VoteTest extends PHPUnit_Framework_TestCase +class VoteTest extends TestBase { /** * Vote service instance to test. @@ -62,28 +61,6 @@ class VoteTest extends PHPUnit_Framework_TestCase - /** - * Create a new bookmark. - * - * @return integer ID of bookmark - */ - protected function addBookmark() - { - $bs = SemanticScuttle_Service_Factory::get('Bookmark'); - $rand = rand(); - $bid = $bs->addBookmark( - 'http://example.org/' . $rand, - 'unittest bookmark #' . $rand, - 'description', - null, - 0, - array('unittest') - ); - return $bid; - } - - - /** * Test getVoting() when no votes have been cast. * @@ -345,7 +322,7 @@ class VoteTest extends PHPUnit_Framework_TestCase $this->assertEquals(-1, $this->vs->getVote($bid, $uid)); } -}//class VoteTest extends PHPUnit_Framework_TestCase +}//class VoteTest extends TestBase if (PHPUnit_MAIN_METHOD == 'VoteTest::main') { -- cgit v1.2.3-54-g00ecf