diff options
Diffstat (limited to 'tests/plugins/PluginAddlinkTest.php')
-rw-r--r-- | tests/plugins/PluginAddlinkTest.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/plugins/PluginAddlinkTest.php b/tests/plugins/PluginAddlinkTest.php index a2f25bec..b77fe12a 100644 --- a/tests/plugins/PluginAddlinkTest.php +++ b/tests/plugins/PluginAddlinkTest.php | |||
@@ -16,7 +16,7 @@ class PluginAddlinkTest extends PHPUnit_Framework_TestCase | |||
16 | /** | 16 | /** |
17 | * Reset plugin path. | 17 | * Reset plugin path. |
18 | */ | 18 | */ |
19 | function setUp() | 19 | public function setUp() |
20 | { | 20 | { |
21 | PluginManager::$PLUGINS_PATH = 'plugins'; | 21 | PluginManager::$PLUGINS_PATH = 'plugins'; |
22 | } | 22 | } |
@@ -24,7 +24,7 @@ class PluginAddlinkTest extends PHPUnit_Framework_TestCase | |||
24 | /** | 24 | /** |
25 | * Test render_header hook while logged in. | 25 | * Test render_header hook while logged in. |
26 | */ | 26 | */ |
27 | function testAddlinkHeaderLoggedIn() | 27 | public function testAddlinkHeaderLoggedIn() |
28 | { | 28 | { |
29 | $str = 'stuff'; | 29 | $str = 'stuff'; |
30 | $data = array($str => $str); | 30 | $data = array($str => $str); |
@@ -46,7 +46,7 @@ class PluginAddlinkTest extends PHPUnit_Framework_TestCase | |||
46 | /** | 46 | /** |
47 | * Test render_header hook while logged out. | 47 | * Test render_header hook while logged out. |
48 | */ | 48 | */ |
49 | function testAddlinkHeaderLoggedOut() | 49 | public function testAddlinkHeaderLoggedOut() |
50 | { | 50 | { |
51 | $str = 'stuff'; | 51 | $str = 'stuff'; |
52 | $data = array($str => $str); | 52 | $data = array($str => $str); |
@@ -61,7 +61,7 @@ class PluginAddlinkTest extends PHPUnit_Framework_TestCase | |||
61 | /** | 61 | /** |
62 | * Test render_includes hook while logged in. | 62 | * Test render_includes hook while logged in. |
63 | */ | 63 | */ |
64 | function testAddlinkIncludesLoggedIn() | 64 | public function testAddlinkIncludesLoggedIn() |
65 | { | 65 | { |
66 | $str = 'stuff'; | 66 | $str = 'stuff'; |
67 | $data = array($str => $str); | 67 | $data = array($str => $str); |
@@ -86,7 +86,7 @@ class PluginAddlinkTest extends PHPUnit_Framework_TestCase | |||
86 | * Test render_includes hook. | 86 | * Test render_includes hook. |
87 | * Should not affect css files while logged out. | 87 | * Should not affect css files while logged out. |
88 | */ | 88 | */ |
89 | function testAddlinkIncludesLoggedOut() | 89 | public function testAddlinkIncludesLoggedOut() |
90 | { | 90 | { |
91 | $str = 'stuff'; | 91 | $str = 'stuff'; |
92 | $data = array($str => $str); | 92 | $data = array($str => $str); |