public function LargeFileContentTestCase::writesDataAtStartWhenOffsetNotMoved in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/content/LargeFileContentTestCase.php \org\bovigo\vfs\content\LargeFileContentTestCase::writesDataAtStartWhenOffsetNotMoved()
@test
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ content/ LargeFileContentTestCase.php, line 80
Class
Namespace
org\bovigo\vfs\contentCode
public function writesDataAtStartWhenOffsetNotMoved() {
$this
->assertEquals(9, $this->largeFileContent
->write('foobarbaz'));
$this
->assertEquals('foobarbaz' . str_repeat(' ', 91), $this->largeFileContent
->content());
}