We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c16983 commit ab18bdeCopy full SHA for ab18bde
tests/Functional/ScriptTest.php
@@ -209,12 +209,16 @@ public function testNoCoberturaFileError(): void
209
210
public function testInitSuccess(): void
211
{
212
+ $tmpConfigFile = (string) getcwd() . '/phpunit-cobertura-formatter.yml.dist';
213
+
214
$process = $this->runProcess([
215
'--init',
216
]);
217
218
+ self::assertFileExists((string) realpath($tmpConfigFile));
219
220
unlink(
- (string) realpath((string) getcwd() . '/phpunit-cobertura-formatter.yml.dist')
221
+ (string) realpath($tmpConfigFile)
222
);
223
224
self::assertStringContainsString(
0 commit comments