| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class RunServerCommandCest |
||
| 11 | { |
||
| 12 | public function _before(UnitTester $I) |
||
|
|
|||
| 13 | { |
||
| 14 | } |
||
| 15 | |||
| 16 | public function _after(UnitTester $I) |
||
| 18 | } |
||
| 19 | |||
| 20 | // tests |
||
| 21 | public function tryToTest(UnitTester $I) |
||
| 22 | { |
||
| 23 | $command = new RunServer(); |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Test background server run |
||
| 28 | * |
||
| 29 | * @param \UnitTester $I |
||
| 30 | */ |
||
| 31 | public function testBackgroundMode(UnitTester $I) { |
||
| 32 | |||
| 33 | } |
||
| 34 | } |
||
| 35 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.