| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function testGenerate() |
||
| 17 | { |
||
| 18 | $process = new StubbedParaProcess(); |
||
| 19 | $config = new Paraunit(); |
||
| 20 | $fileName = new JSONLogFilename($config); |
||
| 21 | |||
| 22 | $fileName = $fileName->generate($process); |
||
| 23 | |||
| 24 | $this->assertEquals($config->getTempDirForThisExecution() . '/logs/' . $process->getUniqueId() . '.json.log', $fileName); |
||
| 25 | } |
||
| 26 | } |
||
| 27 |