You are here

public function LargeFileContentTestCase::createInstanceWithGigabytes 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::createInstanceWithGigabytes()

@test

File

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

Class

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

Namespace

org\bovigo\vfs\content

Code

public function createInstanceWithGigabytes() {
  $this
    ->assertEquals(100 * 1024 * 1024 * 1024, LargeFileContent::withGigabytes(100)
    ->size());
}