| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function testSetup() |
||
| 10 | { |
||
| 11 | $config = sprintf( |
||
| 12 | '<%s return ["%s" => [%s]];', |
||
| 13 | '?php', |
||
| 14 | self::CUSTOM_EVENT, |
||
| 15 | sprintf( |
||
| 16 | 'new %s( %s::get() )', |
||
| 17 | Action\PhpLinter::class, |
||
| 18 | Change\FullChangeSet::class |
||
| 19 | ) |
||
| 20 | ); |
||
| 21 | $this->assertNotFalse(file_put_contents('.brother.php', $config)); |
||
| 22 | } |
||
| 23 | |||
| 44 |