eof() public method

public eof ( )
コード例 #1
0
ファイル: LimitStreamTest.php プロジェクト: hilmysyarif/sic
 public function testClaimsConsumedWhenReadLimitIsReached()
 {
     $this->assertFalse($this->body->eof());
     $this->body->read(1000);
     $this->assertTrue($this->body->eof());
 }