We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d7c16a commit e1448bdCopy full SHA for e1448bd
phpunit.xml
@@ -0,0 +1,30 @@
1
+<phpunit
2
+ bootstrap="vendor/autoload.php"
3
+ colors="true"
4
+ convertErrorsToExceptions="true"
5
+ convertNoticesToExceptions="true"
6
+ convertWarningsToExceptions="true"
7
+ stopOnError="false"
8
+ stopOnFailure="false"
9
+ stopOnIncomplete="false"
10
+ stopOnSkipped="false"
11
+ stopOnWarning="false"
12
+ stopOnDefect="false"
13
+ testdox="true"
14
+ processIsolation="false">
15
+ <testsuites>
16
+ <testsuite name="All tests">
17
+ <directory>tests</directory>
18
+ </testsuite>
19
+ </testsuites>
20
+
21
+ <coverage>
22
+ <include>
23
+ <directory>src</directory>
24
+ </include>
25
26
+ <report>
27
+ <html outputDirectory="tests/coverage" />
28
+ </report>
29
+ </coverage>
30
+</phpunit>
run_tests.sh
0 commit comments