Skip to content

Commit e1448bd

Browse files
committed
PHPUnit xml configurations.
1 parent 6d7c16a commit e1448bd

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

Diff for: phpunit.xml

+30
Original file line numberDiff line numberDiff line change
@@ -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>

Diff for: run_tests.sh

-3
This file was deleted.

0 commit comments

Comments
 (0)