diff options
author | VirtualTam <virtualtam@flibidi.net> | 2017-01-05 19:33:06 +0100 |
---|---|---|
committer | VirtualTam <virtualtam+github@flibidi.net> | 2017-01-05 19:52:04 +0100 |
commit | 93b1fe54fb99efff30eec0d405cc7319fbbc1f95 (patch) | |
tree | 21d2aa9b09c1944e19a4f8fe4741277a3213cc5b /tests/plugins/PluginReadityourselfTest.php | |
parent | 724f1e322943b0506a4a4f17e78eaf4b2e464553 (diff) | |
download | Shaarli-93b1fe54fb99efff30eec0d405cc7319fbbc1f95.tar.gz Shaarli-93b1fe54fb99efff30eec0d405cc7319fbbc1f95.tar.zst Shaarli-93b1fe54fb99efff30eec0d405cc7319fbbc1f95.zip |
Cleanup: explicit method visibility
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'tests/plugins/PluginReadityourselfTest.php')
-rw-r--r-- | tests/plugins/PluginReadityourselfTest.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/plugins/PluginReadityourselfTest.php b/tests/plugins/PluginReadityourselfTest.php index 532db146..30470ab7 100644 --- a/tests/plugins/PluginReadityourselfTest.php +++ b/tests/plugins/PluginReadityourselfTest.php | |||
@@ -15,7 +15,7 @@ class PluginReadityourselfTest extends PHPUnit_Framework_TestCase | |||
15 | /** | 15 | /** |
16 | * Reset plugin path | 16 | * Reset plugin path |
17 | */ | 17 | */ |
18 | function setUp() | 18 | public function setUp() |
19 | { | 19 | { |
20 | PluginManager::$PLUGINS_PATH = 'plugins'; | 20 | PluginManager::$PLUGINS_PATH = 'plugins'; |
21 | } | 21 | } |
@@ -23,7 +23,7 @@ class PluginReadityourselfTest extends PHPUnit_Framework_TestCase | |||
23 | /** | 23 | /** |
24 | * Test Readityourself init without errors. | 24 | * Test Readityourself init without errors. |
25 | */ | 25 | */ |
26 | function testReadityourselfInitNoError() | 26 | public function testReadityourselfInitNoError() |
27 | { | 27 | { |
28 | $conf = new ConfigManager(''); | 28 | $conf = new ConfigManager(''); |
29 | $conf->set('plugins.READITYOUSELF_URL', 'value'); | 29 | $conf->set('plugins.READITYOUSELF_URL', 'value'); |
@@ -34,7 +34,7 @@ class PluginReadityourselfTest extends PHPUnit_Framework_TestCase | |||
34 | /** | 34 | /** |
35 | * Test Readityourself init with errors. | 35 | * Test Readityourself init with errors. |
36 | */ | 36 | */ |
37 | function testReadityourselfInitError() | 37 | public function testReadityourselfInitError() |
38 | { | 38 | { |
39 | $conf = new ConfigManager(''); | 39 | $conf = new ConfigManager(''); |
40 | $errors = readityourself_init($conf); | 40 | $errors = readityourself_init($conf); |
@@ -44,7 +44,7 @@ class PluginReadityourselfTest extends PHPUnit_Framework_TestCase | |||
44 | /** | 44 | /** |
45 | * Test render_linklist hook. | 45 | * Test render_linklist hook. |
46 | */ | 46 | */ |
47 | function testReadityourselfLinklist() | 47 | public function testReadityourselfLinklist() |
48 | { | 48 | { |
49 | $conf = new ConfigManager(''); | 49 | $conf = new ConfigManager(''); |
50 | $conf->set('plugins.READITYOUSELF_URL', 'value'); | 50 | $conf->set('plugins.READITYOUSELF_URL', 'value'); |
@@ -72,7 +72,7 @@ class PluginReadityourselfTest extends PHPUnit_Framework_TestCase | |||
72 | /** | 72 | /** |
73 | * Test without config: nothing should happened. | 73 | * Test without config: nothing should happened. |
74 | */ | 74 | */ |
75 | function testReadityourselfLinklistWithoutConfig() | 75 | public function testReadityourselfLinklistWithoutConfig() |
76 | { | 76 | { |
77 | $conf = new ConfigManager(''); | 77 | $conf = new ConfigManager(''); |
78 | $conf->set('plugins.READITYOUSELF_URL', null); | 78 | $conf->set('plugins.READITYOUSELF_URL', null); |