-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathphpunit.xml
More file actions
30 lines (30 loc) · 1.27 KB
/
phpunit.xml
File metadata and controls
30 lines (30 loc) · 1.27 KB
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
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="src/autoload.php">
<testsuites>
<testsuite name="Neo4j">
<file>./tests/BoltTest.php</file>
<directory>./tests/connection</directory>
<directory>./tests/error</directory>
<directory>./tests/packstream</directory>
<directory>./tests/structures</directory>
<file>./tests/PerformanceTest.php</file>
<file>./tests/helpers/ClientTest.php</file>
</testsuite>
<testsuite name="NoDatabase">
<directory>./tests/protocol</directory>
<file>./tests/helpers/FileCacheTest.php</file>
</testsuite>
<testsuite name="Memgraph">
<file>./tests/MemgraphTest.php</file>
<file>./tests/helpers/ClientTest.php</file>
</testsuite>
<testsuite name="NornicDB">
<file>./tests/NornicDBTest.php</file>
<!-- <file>./tests/helpers/ClientTest.php</file> -->
</testsuite>
</testsuites>
<php>
<var name="NEO_USER" value="neo4j"/>
<var name="NEO_PASS" value="nothing123"/>
</php>
</phpunit>