public function LargeFileContentTestCase::writeDataInBetweenDoesNotIncreaseSize 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::writeDataInBetweenDoesNotIncreaseSize()
@test
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ content/ LargeFileContentTestCase.php, line 114
Class
Namespace
org\bovigo\vfs\contentCode
public function writeDataInBetweenDoesNotIncreaseSize() {
$this->largeFileContent
->seek(50, SEEK_SET);
$this
->assertEquals(9, $this->largeFileContent
->write('foobarbaz'));
$this
->assertEquals(100, $this->largeFileContent
->size());
}