summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/largefilehelpergetfilesize.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/lib/largefilehelpergetfilesize.php b/tests/lib/largefilehelpergetfilesize.php
index 001f636a52a..699dd6891ad 100644
--- a/tests/lib/largefilehelpergetfilesize.php
+++ b/tests/lib/largefilehelpergetfilesize.php
@@ -59,4 +59,11 @@ class LargeFileHelperGetFilesize extends \PHPUnit_Framework_TestCase {
$this->helper->getFilesizeViaExec($this->filename)
);
}
+
+ public function testGetFilesizeNative() {
+ $this->assertSame(
+ $this->filesize,
+ $this->helper->getFilesizeNative($this->filename)
+ );
+ }
}