summaryrefslogtreecommitdiffstats
path: root/tests/lib/LegacyHelperTest.php
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 16:51:06 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 16:51:06 +0200
commit1584c9ae9c23d2a7915750ef9203cba0bcebf766 (patch)
tree568db931f631afd6e96772cf2b3ac539c989ec42 /tests/lib/LegacyHelperTest.php
parenta7c8d26d31cb1cf69e0e060c53622e545fcfbbb3 (diff)
downloadnextcloud-server-1584c9ae9c23d2a7915750ef9203cba0bcebf766.tar.gz
nextcloud-server-1584c9ae9c23d2a7915750ef9203cba0bcebf766.zip
Add visibility to all methods and position of static keyword
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests/lib/LegacyHelperTest.php')
-rw-r--r--tests/lib/LegacyHelperTest.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/lib/LegacyHelperTest.php b/tests/lib/LegacyHelperTest.php
index 1940d4f2d01..5c640e91284 100644
--- a/tests/lib/LegacyHelperTest.php
+++ b/tests/lib/LegacyHelperTest.php
@@ -47,12 +47,12 @@ class LegacyHelperTest extends \Test\TestCase {
/**
* @dataProvider providesComputerFileSize
*/
- function testComputerFileSize($expected, $input) {
+ public function testComputerFileSize($expected, $input) {
$result = OC_Helper::computerFileSize($input);
$this->assertEquals($expected, $result);
}
- function providesComputerFileSize() {
+ public function providesComputerFileSize() {
return [
[0.0, "0 B"],
[1024.0, "1 KB"],
@@ -63,7 +63,7 @@ class LegacyHelperTest extends \Test\TestCase {
];
}
- function testMb_array_change_key_case() {
+ public function testMb_array_change_key_case() {
$arrayStart = [
"Foo" => "bar",
"Bar" => "foo",
@@ -89,7 +89,7 @@ class LegacyHelperTest extends \Test\TestCase {
$this->assertEquals($result, $expected);
}
- function testRecursiveArraySearch() {
+ public function testRecursiveArraySearch() {
$haystack = [
"Foo" => "own",
"Bar" => "Cloud",
@@ -103,7 +103,7 @@ class LegacyHelperTest extends \Test\TestCase {
$this->assertFalse($result);
}
- function testBuildNotExistingFileNameForView() {
+ public function testBuildNotExistingFileNameForView() {
$viewMock = $this->createMock(View::class);
$this->assertEquals('/filename', OC_Helper::buildNotExistingFileNameForView('/', 'filename', $viewMock));
$this->assertEquals('dir/filename.ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename.ext', $viewMock));
@@ -188,7 +188,7 @@ class LegacyHelperTest extends \Test\TestCase {
}
- function streamCopyDataProvider() {
+ public function streamCopyDataProvider() {
return [
[0, false, false, false],
[0, false, \OC::$SERVERROOT . '/tests/data/lorem.txt', false],