public function StringBasedFileContentTestCase::writeOverwritesExistingContentWhenOffsetNotAtEof in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/content/StringBasedFileContentTestCase.php \org\bovigo\vfs\content\StringBasedFileContentTestCase::writeOverwritesExistingContentWhenOffsetNotAtEof()
@test
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ content/ StringBasedFileContentTestCase.php, line 168
Class
Namespace
org\bovigo\vfs\contentCode
public function writeOverwritesExistingContentWhenOffsetNotAtEof() {
$this
->assertEquals(3, $this->stringBasedFileContent
->write('bar'));
$this
->assertEquals('barbarbaz', $this->stringBasedFileContent
->content());
}