forked from doctrine/orientdb-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
69 lines (65 loc) · 2.19 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?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="Query builder">
<directory >test/Query</directory>
<file >test/QueryTest.php</file>
</testsuite>
<testsuite name="Graph">
<file >test/GraphTest.php</file>
</testsuite>
<testsuite name="HTTP">
<directory >test/Http</directory>
</testsuite>
<testsuite name="ODM">
<directory >test/ODM</directory>
</testsuite>
<testsuite name="Formatter">
<directory >test/Formatter</directory>
</testsuite>
<testsuite name="Algorithm">
<directory >test/Algorithm</directory>
</testsuite>
<testsuite name="ODM">
<directory >test/ODM</directory>
</testsuite>
<testsuite name="Excp">
<directory >test/Exception</directory>
</testsuite>
<testsuite name="Validator">
<directory >test/Validator</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">test</directory>
<directory suffix=".php">lib</directory>
<directory suffix=".php">vendor</directory>
</blacklist>
</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="demo"/>
<const name="TEST_ODB_TIMEOUT" value="30"/>
</php>
</phpunit>