Exemple #1
0
 /**
  * @test
  */
 public function getObjectNamespaceBuildsCorrectObjectNamespace()
 {
     $listId = 'hallo';
     $uid = 3;
     $expected = 'hallo.bookmark.3';
     $this->proxy->_set('listId', $listId);
     $this->proxy->_set('uid', $uid);
     $actual = $this->proxy->getObjectNamespace();
     $this->assertEquals($expected, $actual);
 }