forked from punic/punic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
44 lines (44 loc) · 1.29 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
<phpunit
bootstrap="./tests/bootstrap.php"
>
<testsuites>
<testsuite name="Data tests">
<directory>./tests/Data/</directory>
</testsuite>
<testsuite name="Calendar tests">
<directory>./tests/Calendar/</directory>
</testsuite>
<testsuite name="Miscellaneous functions tests">
<directory>./tests/Misc/</directory>
</testsuite>
<testsuite name="Plural functions tests">
<directory>./tests/Plural/</directory>
</testsuite>
<testsuite name="Unit functions tests">
<directory>./tests/Unit/</directory>
</testsuite>
<testsuite name="Language functions tests">
<directory>./tests/Language/</directory>
</testsuite>
<testsuite name="Territory functions tests">
<directory>./tests/Territory/</directory>
</testsuite>
<testsuite name="Number functions tests">
<directory>./tests/Number/</directory>
</testsuite>
<testsuite name="Phone functions tests">
<directory>./tests/Phone/</directory>
</testsuite>
<testsuite name="Currency functions tests">
<directory>./tests/Currency/</directory>
</testsuite>
<testsuite name="Exceptions tests">
<directory>./tests/Exception/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./code</directory>
</whitelist>
</filter>
</phpunit>