예제 #1
0
파일: ResponseTest.php 프로젝트: abava/http
 /**
  * @return @test
  */
 public function canBeInitialized()
 {
     $this->body->shouldReceive('__toString')->andReturn('');
     $this->assertEmpty($this->response->getContent());
     $this->body->shouldHaveReceived('__toString')->withNoArgs();
 }