Example #1
0
 public function testGetRawBody()
 {
     $rawBody = 'body string';
     $this->request->expects($this->once())->method('getRawBody')->will($this->returnValue($rawBody));
     $this->assertEquals($rawBody, $this->context->getRawBody());
 }