Skip to content

Commit faa175e

Browse files
Fix phpunit.xml.dist for compatibility with PHPUnit 9–11 to restore CI test execution
1 parent 53e3c16 commit faa175e

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

phpunit.xml.dist

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5+
bootstrap="vendor/autoload.php"
6+
colors="true"
7+
testdox="true"
8+
>
9+
<testsuites>
10+
<testsuite name="Codemonster Database Test Suite">
11+
<directory suffix="Test.php">tests</directory>
12+
</testsuite>
13+
</testsuites>
14+
15+
<source>
16+
<include>
17+
<directory>src</directory>
18+
</include>
19+
</source>
20+
</phpunit>

0 commit comments

Comments
 (0)