コード例 #1
0
ファイル: StreamTest.php プロジェクト: phpfont/binary
 public function testGetSize()
 {
     $this->resource = fopen(__DIR__ . '/assets/non-font-file.txt', 'r');
     $stream = new Stream($this->resource);
     $this->assertEquals(5, $stream->getSize());
 }