Example #1
0
 public function testSendShouldEchoContents()
 {
     $response = new Response();
     $response->contents('Test Content');
     $this->assertEquals('Test Content', $this->result($response));
 }