We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
phpunit.xml.dist
1 parent c32e51a commit 41d941eCopy full SHA for 41d941e
2 files changed
phpunit.xml
phpunit.xml.dist
@@ -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