Exemplo n.º 1
0
 /**
  * @runInSeparateProcess
  */
 public function test_sending_response()
 {
     $response = new HttpResponse();
     ob_start();
     $response->send();
     $result = ob_get_clean();
     $this->assertNotNull($result);
     // todo: control result
 }