forked from Learnosity/learnosity-qti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
25 lines (25 loc) · 1.05 KB
/
phpunit.xml
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
<phpunit bootstrap="./tests/bootstrap.php">
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">./tests</directory>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./src/Entities</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./reports/coverage/coverage.xml"/>
<log type="junit" target="./reports/coverage/junit.xml" logIncompleteSkipped="false"/>
<log type="coverage-html" target="./reports/coverage/html" title="Learnosity" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="70"/>
</logging>
<testsuites>
<testsuite name="unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/Integration</directory>
</testsuite>
</testsuites>
</phpunit>