Skip to content

Commit 41d941e

Browse files
Add a phpunit.xml.dist file to restore PHPUnit tests
1 parent c32e51a commit 41d941e

2 files changed

Lines changed: 16 additions & 10 deletions

File tree

phpunit.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

phpunit.xml.dist

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
3+
bootstrap="tests/bootstrap.php"
4+
colors="always"
5+
beStrictAboutTestsThatDoNotTestAnything="true"
6+
beStrictAboutOutputDuringTests="true"
7+
beStrictAboutTestSize="true"
8+
beStrictAboutChangesToGlobalState="false">
9+
<testsuites>
10+
<testsuite>
11+
<directory prefix="spec-" suffix=".php">tests/</directory>
12+
<directory prefix="test-" suffix=".php">tests/</directory>
13+
<directory suffix="Test.php">tests/</directory>
14+
</testsuite>
15+
</testsuites>
16+
</phpunit>

0 commit comments

Comments
 (0)