-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
35 lines (31 loc) · 907 Bytes
/
phpunit.xml.dist
File metadata and controls
35 lines (31 loc) · 907 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="true"
stopOnFailure="false"
syntaxCheck="true">
<testsuites>
<testsuite>
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<php>
<var name="DB_HOST" value="" />
<var name="DB_USER" value="" />
<var name="DB_PASS" value="" />
<var name="DB_NAME" value="" />
<var name="DB_CHAR" value="" />
<var name="DB_PORT" value="" />
<var name="DB_SOCK" value="" />
</php>
</phpunit>