Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function testExecute() |
||
29 | { |
||
30 | $command = $this->application->find('obblm:rules:load'); |
||
31 | $commandTester = new CommandTester($command); |
||
32 | $commandTester->execute([]); |
||
33 | |||
34 | $output = $commandTester->getDisplay(); |
||
35 | // the output of the command in the console |
||
36 | $this->assertStringContainsString('[OK] All rules have been created or updated.', $output); |
||
37 | } |
||
47 |