Skip to content

Commit a33c3a0

Browse files
committed
Fix PHPUnit depreciations
1 parent d2c3b7c commit a33c3a0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

phpunit.xml.dist

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
colors="true"
55
processIsolation="false"
66
stopOnFailure="false"
7+
bootstrap="./tests/bootstrap.php"
8+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
79
displayDetailsOnTestsThatTriggerDeprecations="true"
810
displayDetailsOnTestsThatTriggerErrors="true"
911
displayDetailsOnTestsThatTriggerNotices="true"
1012
displayDetailsOnTestsThatTriggerWarnings="true"
11-
bootstrap="./tests/bootstrap.php"
1213
backupStaticProperties="false"
1314
>
1415
<testsuites>

tests/SyntaxTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
class SyntaxTest extends \PHPFUI\PHPUnitSyntaxCoverage\Extensions
44
{
5-
/** @group SyntaxTest */
65
public function testDirectory() : void
76
{
87
$this->addSkipDirectory('makefont');
@@ -11,7 +10,6 @@ public function testDirectory() : void
1110
$this->assertValidPHPDirectory(__DIR__ . '/../examples', 'examples directory has an error');
1211
}
1312

14-
/** @group SyntaxTest */
1513
public function testValidPHPFile() : void
1614
{
1715
$this->assertValidPHPFile(__DIR__ . '/../.php-cs-fixer.dist.php', '.php-cs-fixer.dist.php file is bad');

0 commit comments

Comments
 (0)