forked from neo4j-php/Bolt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
28 lines (26 loc) · 978 Bytes
/
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
<phpunit colors="true" verbose="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
convertErrorsToExceptions="true"
convertDeprecationsToExceptions="true"
bootstrap="src/autoload.php"
>
<testsuites>
<testsuite name="Database">
<directory>./tests/connection</directory>
<file>./tests/BoltTest.php</file>
<file>./tests/StructuresTest.php</file>
</testsuite>
<testsuite name="NoDatabase">
<directory>./tests/error</directory>
<directory>./tests/PackStream</directory>
<directory>./tests/protocol</directory>
</testsuite>
</testsuites>
<php>
<var name="NEO_USER" value="neo4j"/>
<var name="NEO_PASS" value="nothing"/>
</php>
</phpunit>