コード例 #1
0
ファイル: MapTest.php プロジェクト: tubepress/tubepress
 public function testGetAll()
 {
     $this->_sut->put('foo', 33);
     $this->_sut->put('bar', 'hi');
     $this->assertEquals(array('foo', 'bar'), $this->_sut->keySet());
 }