assertGreaterThan(400, $size); $this->assertLessThan(400000, $size); } public function test_getFileSize_ShouldReturnNull_IfFileDoesNotExists() { $size = Filesystem::getFileSize(PIWIK_INCLUDE_PATH . '/tests/NotExisting.File'); $this->assertNull($size); } public function test_removeFile_shouldRemoveFile() { $tmpFile = StaticContainer::get('path.tmp') . '/filesystem-test-file'; touch($tmpFile); Filesystem::remove($tmpFile); $this->assertFileNotExists($tmpFile); } public function test_removeNonExistingFile_shouldNotThrowException() { Filesystem::remove('foo'); } }