enable testRewind
This commit is contained in:
parent
49df8ef525
commit
18a1225b0c
1 changed files with 14 additions and 14 deletions
|
@ -167,20 +167,20 @@ class Encryption extends \Test\TestCase {
|
||||||
// fclose($stream);
|
// fclose($stream);
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// public function testRewind() {
|
public function testRewind() {
|
||||||
// $fileName = tempnam("/tmp", "FOO");
|
$fileName = tempnam("/tmp", "FOO");
|
||||||
// $stream = $this->getStream($fileName, 'w+', 0);
|
$stream = $this->getStream($fileName, 'w+', 0);
|
||||||
// $this->assertEquals(6, fwrite($stream, 'foobar'));
|
$this->assertEquals(6, fwrite($stream, 'foobar'));
|
||||||
// $this->assertEquals(TRUE, rewind($stream));
|
$this->assertEquals(TRUE, rewind($stream));
|
||||||
// $this->assertEquals('foobar', fread($stream, 100));
|
$this->assertEquals('foobar', fread($stream, 100));
|
||||||
// $this->assertEquals(TRUE, rewind($stream));
|
$this->assertEquals(TRUE, rewind($stream));
|
||||||
// $this->assertEquals(3, fwrite($stream, 'bar'));
|
$this->assertEquals(3, fwrite($stream, 'bar'));
|
||||||
// fclose($stream);
|
fclose($stream);
|
||||||
//
|
|
||||||
// $stream = $this->getStream($fileName, 'r', 6);
|
$stream = $this->getStream($fileName, 'r', 6);
|
||||||
// $this->assertEquals('barbar', fread($stream, 100));
|
$this->assertEquals('barbar', fread($stream, 100));
|
||||||
// fclose($stream);
|
fclose($stream);
|
||||||
// }
|
}
|
||||||
|
|
||||||
public function testSeek() {
|
public function testSeek() {
|
||||||
$fileName = tempnam("/tmp", "FOO");
|
$fileName = tempnam("/tmp", "FOO");
|
||||||
|
|
Loading…
Reference in a new issue