forked from doctrine/orientdb-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
54 lines (49 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="true"
bootstrap="test/PHPUnit/bootstrap.php"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
syntaxCheck="false"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
strict="false"
verbose="false">
<testsuites>
<testsuite name="OrientDB Client">
<directory>test/Doctrine/OrientDB</directory>
</testsuite>
<testsuite name="OrientDB ODM">
<directory>test/Doctrine/ODM/OrientDB</directory>
</testsuite>
</testsuites>
<groups>
<!--
<exclude>
<group>integration</group>
</exclude>
-->
</groups>
<filter>
<whitelist>
<directory suffix=".php">src/Doctrine/OrientDB/</directory>
<directory suffix=".php">src/Doctrine/ODM/OrientDB/</directory>
</whitelist>
</filter>
<php>
<const name="TEST_ODB_HOST" value="127.0.0.1"/>
<const name="TEST_ODB_PORT" value="2480"/>
<const name="TEST_ODB_USER" value="admin"/>
<const name="TEST_ODB_PASSWORD" value="admin"/>
<const name="TEST_ODB_DATABASE" value="GratefulDeadConcerts"/>
<const name="TEST_ODB_TIMEOUT" value="30"/>
</php>
</phpunit>