-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml
46 lines (41 loc) · 1.43 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Application">
<directory>./module/Application/tests</directory>
</testsuite>
<testsuite name="Retraitement">
<directory>./module/Retraitement/test</directory>
</testsuite>
<testsuite name="Import">
<directory>./module/Import/tests/Import</directory>
</testsuite>
<testsuite name="Rule">
<directory>./module/Application/tests/ApplicationUnitTest/Rule</directory>
</testsuite>
<testsuite name="Assertions">
<directory>./module/Application/tests/ApplicationUnitTest/Assertion</directory>
</testsuite>
</testsuites>
<logging>
<!--<log type="junit" target="/tmp/phpunit/logs/junit.xml" />-->
<!--<log type="coverage-clover" target="/tmp/phpunit/logs/clover.xml" />-->
<!--<log type="coverage-html" target="/tmp/phpunit/coverage" />-->
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./module/Import</directory>
</whitelist>
</filter>
<groups>
</groups>
<!--
<groups>
<exclude>
<group>disable</group>
<group>integration</group>
<group>integration-sqlserver</group>
</exclude>
</groups>
-->
</phpunit>