We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5fcd02 commit a80351aCopy full SHA for a80351a
phpunit.xml
@@ -0,0 +1,21 @@
1
+<phpunit
2
+ backupGlobals="false"
3
+ colors="true"
4
+ convertErrorsToExceptions="true"
5
+ convertNoticesToExceptions="true"
6
+ convertWarningsToExceptions="true"
7
+ >
8
+ <testsuites>
9
+ <testsuite name="unit" suffix=".php">
10
+ <directory>./tests</directory>
11
+ </testsuite>
12
+ </testsuites>
13
+ <filter>
14
+ <whitelist processUncoveredFilesFromWhitelist="true">
15
+ <directory suffix=".php">./src</directory>
16
+ <directory suffix=".php">./tests</directory>
17
+ <directory suffix=".php">./examples</directory>
18
+ </whitelist>
19
+ </filter>
20
+ <log type="coverage-clover" target="build/logs/clover.xml"/>
21
+</phpunit>
0 commit comments