-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathphpunit.xml
More file actions
42 lines (38 loc) · 1.26 KB
/
phpunit.xml
File metadata and controls
42 lines (38 loc) · 1.26 KB
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
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false" >
<testsuites>
<testsuite name="ezSQL Test Suite">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./build</directory>
<directory>./demo</directory>
<directory>./docs</directory>
<directory>./tests</directory>
<directory>./vendor</directory>
<file>./ez_sql_loader.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="clover.xml"/>
</logging>
<php>
<var name="DB_DSN" value="mysql:dbname=ez_test;host=localhost" />
<var name="DB_USER" value="ez_test" />
<var name="DB_PASSWD" value="ezTest" />
<var name="DB_DBNAME" value="ez_test" />
</php>
</phpunit>