示例#1
0
 /**
  * @test
  * @covers ::jsonSerialize
  * @uses \AyeAye\Api\Request
  */
 public function testJsonSerialize()
 {
     $request = new Request();
     $this->assertSame(['method' => Request::METHOD_GET, 'requestedUri' => '', 'parameters' => []], $request->jsonSerialize());
 }