-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
34 lines (33 loc) · 1.19 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
34 lines (33 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0"?>
<!-- initial phpunit configuration file, that you can modify for your project needs -->
<phpunit cacheTokens="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="false"
verbose="false"
bootstrap="tests/bootstrap.php">
<testsuite name="My Test Suite">
<directory>tests</directory>
</testsuite>
<filter>
<blacklist>
<!-- Exclude vendor files from code coverage -->
<directory>vendor</directory>
</blacklist>
</filter>
<logging>
<!-- Uncomment this line if you want to have coverage report generated every test run
<log type="coverage-html" target="tests/coverage" charset="UTF-8"
yui="true" highlight="false"
lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="tests/coverage.xml"/>
-->
<log type="junit" target="tests/junit.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>