コード例 #1
0
ファイル: SortedSetTest.php プロジェクト: r-kovalenko/Rediska
 public function testGetLength()
 {
     $this->rediska->addToSortedSet('test', 123, 1);
     $this->rediska->addToSortedSet('test', 456, 2);
     $this->assertEquals(2, $this->set->getLength());
     $this->assertEquals(2, count($this->set));
 }