-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
52 lines (47 loc) · 1.44 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
47
48
49
50
51
52
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="API::AEAD">
<directory>tests/API/AEAD</directory>
</testsuite>
<testsuite name="API::Ciphers">
<directory>tests/API/Ciphers</directory>
</testsuite>
<testsuite name="API::Filters">
<directory>tests/API/Filters</directory>
</testsuite>
<testsuite name="API::MessageAuthenticators">
<directory>tests/API/MessageAuthenticators</directory>
</testsuite>
<testsuite name="API::Misc">
<directory>tests/API/Misc</directory>
</testsuite>
<testsuite name="API::Modes">
<directory>tests/API/Modes</directory>
</testsuite>
<testsuite name="Implementation">
<directory>tests/Implementation/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<groups>
<exclude>
<group>slow</group>
</exclude>
</groups>
<logging>
<log type="coverage-html" target="docs/coverage/"
charset="UTF-8" yui="true" highlight="false"
lowUpperBound="35" highLowerBound="70"/>
</logging>
<php>
<ini name="date.timezone" value="Europe/Paris"/>
<ini name="default_socket_timeout" value="10"/>
</php>
</phpunit>