@@ -130,7 +130,7 @@ |
||
130 | 130 | $process->reportAbnormalTermination(); |
131 | 131 | $this->getAbnormalTerminatedOutputContainer()->addToOutputBuffer( |
132 | 132 | $process, |
133 | - 'Culpable test function: ' . $culpableFunctionName . " -- complete test output:\n\n" . $process->getOutput() |
|
133 | + 'Culpable test function: '.$culpableFunctionName." -- complete test output:\n\n".$process->getOutput() |
|
134 | 134 | ); |
135 | 135 | } |
136 | 136 | } |
@@ -90,9 +90,9 @@ |
||
90 | 90 | $stackTrace = ''; |
91 | 91 | |
92 | 92 | foreach ($log->trace as $step) { |
93 | - $stackTrace .= "\n" . $step->file . ':' . $step->line; |
|
93 | + $stackTrace .= "\n".$step->file.':'.$step->line; |
|
94 | 94 | } |
95 | 95 | |
96 | - return $log->test . "\n" . $log->message . "\n" . $stackTrace; |
|
96 | + return $log->test."\n".$log->message."\n".$stackTrace; |
|
97 | 97 | } |
98 | 98 | } |
@@ -66,11 +66,11 @@ |
||
66 | 66 | */ |
67 | 67 | private function createCommandLine($testFilePath, $uniqueId) |
68 | 68 | { |
69 | - return $this->phpUnitBin . |
|
70 | - ' -c ' . $this->phpunitConfigFile->getFileFullPath() . |
|
71 | - ' --colors=never' . |
|
72 | - ' --log-json=' . $this->jsonLogFilename->generateFromUniqueId($uniqueId) . |
|
73 | - ' ' . $testFilePath; |
|
69 | + return $this->phpUnitBin. |
|
70 | + ' -c '.$this->phpunitConfigFile->getFileFullPath(). |
|
71 | + ' --colors=never'. |
|
72 | + ' --log-json='.$this->jsonLogFilename->generateFromUniqueId($uniqueId). |
|
73 | + ' '.$testFilePath; |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |