コード例 #1
0
 public function testGet_databoxes()
 {
     $request = new Request([], [], [], [], [], ['HTTP_Accept' => 'application/json']);
     $result = $this->object->get_databoxes($request);
     $this->assertEquals(200, $result->get_http_code());
     $this->assertEquals('application/json', $result->get_content_type());
     $this->assertTrue(is_array(json_decode($result->format(), true)));
 }