-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml.dist
40 lines (35 loc) · 1.11 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
colors="true"
processIsolation="false"
stopOnFailure="true"
syntaxCheck="true"
backupGlobals="false"
backupStaticAttributes="false"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
bootstrap="test-bootstrap.php">
<php>
<var name="DB_DSN" value="mysql:host=localhost;dbname=database1" />
<var name="DB_USER" value="root" />
<var name="DB_PASSWD" value="Liebe123" />
<var name="DB_DBNAME" value="mysql" />
</php>
<testsuites>
<testsuite name="php-identity-map">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<file>test-bootstrap.php</file>
<file>autoload.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>