コード例 #1
0
ファイル: PostBodyTest.php プロジェクト: puzzlehttp/puzzle
 public function testWrapsBasicStreamFunctionality()
 {
     $b = new puzzle_post_PostBody();
     $this->assertTrue($b->isSeekable());
     $this->assertTrue($b->isReadable());
     $this->assertFalse($b->isWritable());
     $this->assertFalse($b->write('foo'));
 }