-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
31 lines (31 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false">
<testsuites>
<testsuite name="Duality Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
</whitelist>
<blacklist>
<directory suffix=".php">./src</directory>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./tests/data</directory>
<directory suffix=".php">./tests/coverage</directory>
</blacklist>
</filter>
<php>
<const name="DATA_PATH" value="./tests/data" />
<const name="DB_SCHEMA" value="./tests/data/schema.php" />
<const name="DB_DSN" value="sqlite:tests/data/test.sqlite" />
<const name="DB_USER" value="root" />
<const name="DB_PASS" value="pass" />
</php>
</phpunit>