Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
55 | function testProcesses() |
||
56 | { |
||
57 | global $webUrl; |
||
58 | global $lang, $SERVER, $DATABASE; |
||
59 | |||
60 | $this->assertTrue($this->get("$webUrl/database.php", array( |
||
61 | 'server' => $SERVER, |
||
62 | 'database' => $DATABASE, |
||
63 | 'subject' => 'database', |
||
64 | 'action' => 'processes')) |
||
65 | ); |
||
66 | |||
67 | $this->assertWantedText($lang['strnodata']); |
||
68 | |||
69 | return TRUE; |
||
70 | } |
||
74 |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.