예제 #1
0
파일: MessageTest.php 프로젝트: seytar/psx
 public function testSetBodyResource()
 {
     $handle = fopen('php://memory', 'r+');
     fwrite($handle, 'foobar');
     $message = new Message(array(), $handle);
     $this->assertEquals('foobar', (string) $message->getBody());
 }