-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpunit.xml
26 lines (26 loc) · 916 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/latest/phpunit.xsd"
bootstrap="Tests/Unit/bootstrap.php"
colors="true"
verbose="false"
>
<testsuites>
<testsuite name="unit">
<directory>Tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
</whitelist>
</filter>
<php>
<server name="HTTP_HOST" value="localhost" force="true"/>
<server name="REQUEST_SCHEME" value="http" force="true"/>
<server name="REQUEST_URI" value="/index.php/some-page" force="true"/>
<server name="PHP_SELF" value="/index.php/some-page" force="true"/>
<server name="SCRIPT_NAME" value="/index.php" force="true"/>
</php>
</phpunit>