Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function isProgramInstalled() |
||
22 | { |
||
23 | $this->assertTrue(WindowsSystem::isProgramInstalled("notepad")); |
||
24 | |||
25 | $this->assertFalse(WindowsSystem::isProgramInstalled("notepad-that-never-made-it-into-windows-kernel")); |
||
26 | |||
27 | $this->assertFalse(WindowsSystem::isProgramInstalled("invalid\\command*name|thisis")); |
||
28 | } |
||
29 | |||
60 |