-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathphpunit.xml.dist
36 lines (33 loc) · 1.31 KB
/
phpunit.xml.dist
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
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./tests/Bootstrap.php">
<testsuites>
<testsuite name="playgroundgameC">
<directory>./tests/PlaygroundGameTest/Controller</directory>
</testsuite>
<testsuite name="playgroundgameE">
<directory>./tests/PlaygroundGameTest/Entity</directory>
</testsuite>
<testsuite name="playgroundgameF">
<directory>./tests/PlaygroundGameTest/Form</directory>
</testsuite>
<testsuite name="playgroundgameM">
<directory>./tests/PlaygroundGameTest/Mapper</directory>
</testsuite>
<testsuite name="playgroundgameS">
<directory>./tests/PlaygroundGameTest/Service</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">./tests/</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/logs/coverage" lowUpperBound="40" highLowerBound="80" />
<log type="coverage-clover" target="build/logs/clover.xml" />
<log type="junit" target="build/logs/junit.xml" />
</logging>
</phpunit>