Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions infection.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,11 @@
"stryker": {
"report": "1.x"
}
},
"mutators": {
"@default": true,
"global-ignoreSourceCodeByRegex": [
"#\\[TestInline"
]
}
}
10 changes: 10 additions & 0 deletions tests/Application/Stub/EmptyRun/.placeholder.php

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That file does not look like required in this PR

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

declare(strict_types=1);

// Intentionally empty — fixture directory for EmptyRunTest.
// This file exists solely so the PHPUnit mirror build (bin/build-phpunit.php)
// copies it to tests/PhpUnit/Application/Stub/EmptyRun/, creating the directory
// that the mirrored EmptyRunTest references via __DIR__ . '/../../Stub/EmptyRun'.
// The file contains no classes or tests; the Testo application run in the test
// finds zero tests here and correctly reports Status::Risky.
Loading