forked from cross-solution/YAWIK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
48 lines (48 loc) · 1.73 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
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="./vendor/autoload.php"
colors="true"
ignoreDeprecatedCodeUnitsFromCodeCoverage="true"
beStrictAboutTestsThatDoNotTestAnything="true"
>
<php>
<env name="APPLICATION_ENV" value="test"/>
<ini name="error_reporting" value="E_ALL"/>
</php>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./module/*/src</directory>
<exclude>
<directory>./module/Behat</directory>
<directory>./module/ReleaseTools</directory>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="Applications">
<directory>./module/Applications/test/ApplicationsTest</directory>
</testsuite>
<testsuite name="Auth">
<directory>./module/Auth/test/AuthTest</directory>
<directory>./module/Auth/test/AclTest</directory>
</testsuite>
<testsuite name="Core">
<directory>./module/Core/test/CoreTest</directory>
</testsuite>
<testsuite name="Cv">
<directory>./module/Cv/test/CvTest</directory>
</testsuite>
<testsuite name="Geo">
<directory>./module/Geo/test/GeoTest</directory>
</testsuite>
<testsuite name="Install">
<directory>./module/Install/test/InstallTest</directory>
</testsuite>
<testsuite name="Jobs">
<directory>./module/Jobs/test/JobsTest</directory>
</testsuite>
<testsuite name="Organizations">
<directory>./module/Organizations/test/OrganizationsTest</directory>
</testsuite>
</testsuites>
</phpunit>