Exemplo n.º 1
0
 /**
  * @group 42
  */
 public function testGetSizeReturnsStreamSize()
 {
     $resource = fopen(__FILE__, 'r');
     $expected = fstat($resource);
     $stream = new Stream($resource);
     $this->assertEquals($expected['size'], $stream->getSize());
 }