예제 #1
0
파일: JsonTest.php 프로젝트: raphhh/trex
 /**
  * Tests toArray.
  */
 public function testToArray()
 {
     $data = array("bar" => "test");
     $json = new Json($data);
     $this->assertSame($data, $json->toArray());
 }