test that voting for other bookmarks does not change when voting for one bookmark
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@447 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
64a44cceb8
commit
03bc498eff
1 changed files with 8 additions and 1 deletions
|
@ -57,6 +57,8 @@ class VoteTest extends TestBase
|
||||||
//FIXME: create true new instance
|
//FIXME: create true new instance
|
||||||
$this->vs = SemanticScuttle_Service_Factory::get('Vote');
|
$this->vs = SemanticScuttle_Service_Factory::get('Vote');
|
||||||
$this->vs->deleteAll();
|
$this->vs->deleteAll();
|
||||||
|
|
||||||
|
$this->bs = SemanticScuttle_Service_Factory::get('Bookmark');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -193,7 +195,9 @@ class VoteTest extends TestBase
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test hasVoted() when a vote has been cast for other bookmarks
|
* Test hasVoted() when a vote has been cast for other bookmarks.
|
||||||
|
* Also verify that the bookmark voting did not change for
|
||||||
|
* the other bookmarks.
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
@ -208,6 +212,9 @@ class VoteTest extends TestBase
|
||||||
$this->vs->vote($bid3, $uid, 1);
|
$this->vs->vote($bid3, $uid, 1);
|
||||||
|
|
||||||
$this->assertFalse($this->vs->hasVoted($bid2, $uid));
|
$this->assertFalse($this->vs->hasVoted($bid2, $uid));
|
||||||
|
|
||||||
|
$bm2 = $this->bs->getBookmark($bid2);
|
||||||
|
$this->assertEquals(0, $bm2['bVoting']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue