You are here

public function LargeFileContentTestCase::truncateReducesSize in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/content/LargeFileContentTestCase.php \org\bovigo\vfs\content\LargeFileContentTestCase::truncateReducesSize()

@test

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/content/LargeFileContentTestCase.php, line 170

Class

LargeFileContentTestCase
Test for org\bovigo\vfs\content\LargeFileContent.

Namespace

org\bovigo\vfs\content

Code

public function truncateReducesSize() {
  $this
    ->assertTrue($this->largeFileContent
    ->truncate(50));
  $this
    ->assertEquals(50, $this->largeFileContent
    ->size());
}