/opt/cpanel/ea-wappspector/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs
NameSizeModeActions
content/-0755rm
proxy/-0755rm
visitor/-0755rm
DirectoryIterationTestCase.php117780644editdlrm
FilenameTestCase.php22400644editdlrm
Issue104TestCase.php16520644editdlrm
PermissionsTestCase.php33650644editdlrm
QuotaTestCase.php15450644editdlrm
UnlinkTestCase.php17600644editdlrm
vfsStreamAbstractContentTestCase.php472360644editdlrm
vfsStreamBlockTestCase.php22180644editdlrm
vfsStreamContainerIteratorTestCase.php29850644editdlrm
vfsStreamDirectoryIssue18TestCase.php23060644editdlrm
vfsStreamDirectoryIssue134TestCase.php14320644editdlrm
vfsStreamDirectoryTestCase.php112460644editdlrm
vfsStreamExLockTestCase.php15610644editdlrm
vfsStreamFileTestCase.php114510644editdlrm
vfsStreamGlobTestCase.php6750644editdlrm
vfsStreamResolveIncludePathTestCase.php14520644editdlrm
vfsStreamTestCase.php253900644editdlrm
vfsStreamUmaskTestCase.php48260644editdlrm
vfsStreamWrapperAlreadyRegisteredTestCase.php15210644editdlrm
vfsStreamWrapperBaseTestCase.php25480644editdlrm
vfsStreamWrapperDirSeparatorTestCase.php17100644editdlrm
vfsStreamWrapperDirTestCase.php154580644editdlrm
vfsStreamWrapperFileTestCase.php134790644editdlrm
vfsStreamWrapperFileTimesTestCase.php115130644editdlrm
vfsStreamWrapperFlockTestCase.php145460644editdlrm
vfsStreamWrapperLargeFileTestCase.php19360644editdlrm
vfsStreamWrapperQuotaTestCase.php66720644editdlrm
vfsStreamWrapperSetOptionTestCase.php16760644editdlrm
vfsStreamWrapperStreamSelectTestCase.php10480644editdlrm
vfsStreamWrapperTestCase.php274100644editdlrm
vfsStreamWrapperUnregisterTestCase.php19580644editdlrm
vfsStreamWrapperWithoutRootTestCase.php12650644editdlrm
vfsStreamZipTestCase.php15850644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/mikey179/vfsstream/src/test/php/org/bovigo/vfs/QuotaTestCase.php (1545B)
quota = new Quota(10); } /** * @test */ public function unlimitedQuotaIsNotLimited() { $this->assertFalse(Quota::unlimited()->isLimited()); } /** * @test */ public function limitedQuotaIsLimited() { $this->assertTrue($this->quota->isLimited()); } /** * @test */ public function unlimitedQuotaHasAlwaysSpaceLeft() { $this->assertEquals(303, Quota::unlimited()->spaceLeft(303)); } /** * @test */ public function hasNoSpaceLeftWhenUsedSpaceIsLargerThanQuota() { $this->assertEquals(0, $this->quota->spaceLeft(11)); } /** * @test */ public function hasNoSpaceLeftWhenUsedSpaceIsEqualToQuota() { $this->assertEquals(0, $this->quota->spaceLeft(10)); } /** * @test */ public function hasSpaceLeftWhenUsedSpaceIsLowerThanQuota() { $this->assertEquals(1, $this->quota->spaceLeft(9)); } }