forked from jackalope/jackalope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit_doctrine_dbal.xml.dist
56 lines (52 loc) · 2.35 KB
/
phpunit_doctrine_dbal.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
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="true"
strict="false"
bootstrap="bootstrap_doctrine_dbal.php">
<php>
<var name="phpcr.user" value="admin" />
<var name="phpcr.pass" value="admin" />
<var name="phpcr.workspace" value="tests" />
<!-- Path to Doctrine stuff for transport -->
<!-- if you want your vendors in a different than the default path, uncomment and change this
<var name="phpcr.doctrine.loader" value="../lib/vendor/doctrine-common/lib/Doctrine/Common/ClassLoader.php" />
<var name="phpcr.doctrine.commondir" value="../lib/vendor/doctrine-common/lib" />
<var name="phpcr.doctrine.dbaldir" value="../lib/vendor/doctrine-dbal/lib" />
-->
<var name="phpcr.doctrine.dbal.driver" value="pdo_mysql" />
<var name="phpcr.doctrine.dbal.host" value="localhost" />
<var name="phpcr.doctrine.dbal.username" value="root" />
<var name="phpcr.doctrine.dbal.password" value="" />
<var name="phpcr.doctrine.dbal.dbname" value="phpcr_tests" />
</php>
<testsuites>
<testsuite name="Jackalope Doctrine DBAL Tests">
<directory>./Jackalope</directory>
<directory>./phpcr-api/</directory>
<exclude>./Jackalope/Transport/Jackrabbit</exclude>
</testsuite>
</testsuites>
<!-- configuration for code coverage report -->
<filter>
<whitelist>
<directory>../src</directory>
<directory>../lib/phpcr</directory>
<exclude>
<!-- ignore helpers -->
<file>../src/Jackalope/autoloader.php</file>
<file>../src/Jackalope/Transport/curl.php</file>
<!-- ignore whats not implemented yet -->
<directory>../lib/phpcr/src/PHPCR/Lock</directory>
<directory>../lib/phpcr/src/PHPCR/Observation</directory>
<directory>../lib/phpcr/src/PHPCR/Retention</directory>
<directory>../lib/phpcr/src/PHPCR/Security</directory>
</exclude>
</whitelist>
</filter>
</phpunit>