diff options
Diffstat (limited to 'tests/UserTest.php')
-rw-r--r-- | tests/UserTest.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/UserTest.php b/tests/UserTest.php index 513011b..a68d7dc 100644 --- a/tests/UserTest.php +++ b/tests/UserTest.php @@ -53,6 +53,7 @@ class UserTest extends TestBase protected function setUp() { $this->us = SemanticScuttle_Service_Factory::get('User'); + $this->us->deleteAll(); } @@ -118,6 +119,51 @@ class UserTest extends TestBase ); } + + + /** + * Check if getObjectUsers() without any user works + * + * @return void + */ + public function testGetObjectUsersNone() + { + $users = $this->us->getObjectUsers(); + $this->assertEquals(0, count($users)); + } + + + + /** + * Check if getObjectUsers() with a single user works + * + * @return void + */ + public function testGetObjectUsersSingle() + { + $uid = $this->addUser(); + $users = $this->us->getObjectUsers(); + $this->assertEquals(1, count($users)); + $this->assertType('SemanticScuttle_Model_User', reset($users)); + } + + + + /** + * Check if getObjectUsers() with a several users works + * + * @return void + */ + public function testGetObjectUsersMultiple() + { + $uid = $this->addUser(); + $uid2 = $this->addUser(); + $uid3 = $this->addUser(); + $users = $this->us->getObjectUsers(); + $this->assertEquals(3, count($users)); + $this->assertType('SemanticScuttle_Model_User', reset($users)); + } + } |