blob: 1e51cc13436b49763a6e0c0e2643bb12b4266da3 (
plain)
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 bootstrap="tests/bootstrap.php" colors="true" backupGlobals="false">
<php>
<var name="db_dsn" value="mysql:dbname=flyspray_test;host=localhost"/>
<var name="dbtype" value="mysqli"/>
<var name="dbhost" value="localhost"/>
<var name="dbname" value="flyspray_test"/>
<var name="dbuser" value="root"/>
<var name="dbpass" value=""/>
<var name="dbprefix" value="flyspray_"/>
</php>
<testsuites>
<testsuite name="Flyspray Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
|