diff options
Diffstat (limited to 'tests/lib/LargeFileHelperTest.php')
-rw-r--r-- | tests/lib/LargeFileHelperTest.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/lib/LargeFileHelperTest.php b/tests/lib/LargeFileHelperTest.php index 2cccfa441ab..86d0c1387df 100644 --- a/tests/lib/LargeFileHelperTest.php +++ b/tests/lib/LargeFileHelperTest.php @@ -1,4 +1,5 @@ <?php + /** * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors * SPDX-FileCopyrightText: 2016 ownCloud, Inc. @@ -7,12 +8,14 @@ namespace Test; +use OC\LargeFileHelper; + class LargeFileHelperTest extends TestCase { protected $helper; protected function setUp(): void { parent::setUp(); - $this->helper = new \OC\LargeFileHelper; + $this->helper = new LargeFileHelper; } public function testFormatUnsignedIntegerFloat(): void { @@ -36,7 +39,7 @@ class LargeFileHelperTest extends TestCase { ); } - + public function testFormatUnsignedIntegerStringException(): void { $this->expectException(\UnexpectedValueException::class); |