Add code coverage configuration (phpunit.xml source filter), baseline coverage report (21.27% lines), gitignore coverage/ and .phpunit.result.cache; remove deprecated setAccessible() calls

This commit is contained in:
Pontoporeia
2026-05-20 02:03:55 +02:00
parent a047062d87
commit a6e0aa5887
9 changed files with 17 additions and 14 deletions

View File

@@ -15,7 +15,6 @@ class StudentEmailTest extends TestCase
private function buildHtml(array $thesis): string
{
$ref = new ReflectionMethod(StudentEmail::class, 'buildHtml');
$ref->setAccessible(true);
return $ref->invoke(null, $thesis);
}