-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
24 lines (24 loc) · 906 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="./tests/bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
>
<testsuites>
<testsuite name="Main test suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<php>
<!-- Turn on all errors - using a large integer means all bit fields should be set -->
<ini name="error_reporting" value="2147483647"/>
<const name="ERROR_REPORTING" value="2147483647"/>
<const name="WEB_SERVER_HOST" value="localhost" />
<const name="WEB_SERVER_PORT" value="8080" />
<const name="WEB_SERVER_DOCROOT" value="./src/htdocs" />
<const name="WEB_SERVER_BASE_URL" value="http://localhost:8080"/>
<const name="WEB_SERVER_DELAY" value="5" />
<const name="WEB_SERVER_ROUTER" value="./src/router.php"/>
<const name="OPEN_BADGES_DB_PATH" value="./data/test.db"/>
</php>
</phpunit>