コード例 #1
0
ファイル: MapTest.php プロジェクト: alexsegura/php-collection
 public function testAll()
 {
     $this->map->setAll(array('foo' => 'asdf', 'bar' => array('foo')));
     $this->assertEquals(array('foo' => 'asdf', 'bar' => array('foo'), 'baz' => 'boo'), $this->map->all());
 }