Example #1
0
 public function testGetAll()
 {
     $this->_sut->put('foo', 33);
     $this->_sut->put('bar', 'hi');
     $this->assertEquals(array('foo', 'bar'), $this->_sut->keySet());
 }