| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class CleanTest extends ConsoleTest |
||
| 17 | { |
||
| 18 | public function testClean() |
||
| 19 | { |
||
| 20 | $this->runCommand('configure'); |
||
| 21 | |||
| 22 | $output = $this->runCommand('cache:clean'); |
||
| 23 | $this->assertContains('Runtime cache has been cleared', $output); |
||
| 24 | } |
||
| 25 | |||
| 26 | public function testClean2() |
||
| 27 | { |
||
| 28 | $output = $this->runCommand('cache:clean'); |
||
| 29 | $this->assertContains('Cache directory is missing', $output); |
||
| 30 | } |
||
| 31 | |||
| 32 | public function testCleanVerbose() |
||
| 38 | } |
||
| 39 | |||
| 40 | public function testUpdateClean() |
||
| 47 | } |
||
| 48 | } |