-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
executable file
·33 lines (30 loc) · 1017 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.4/phpunit.xsd"
bootstrap="Tests/bootstrap.php"
processIsolation="true"
stopOnError="true"
verbose="true"
colors="true">
<testsuites>
<testsuite name="Koded Session Test Suite">
<directory>./Tests</directory>
</testsuite>
</testsuites>
<!-- code coverage -->
<filter>
<whitelist>
<directory suffix=".php">./</directory>
<exclude>
<directory>build</directory>
<directory>vendor</directory>
<directory>Tests</directory>
</exclude>
</whitelist>
</filter>
<php>
<ini name="date.timezone" value="UTC"/>
<ini name="session.cookie_lifetime" value="42"/>
<server name="HTTP_USER_AGENT" value="Koded/Session"/>
</php>
</phpunit>