-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.dist.xml
More file actions
33 lines (31 loc) · 1.18 KB
/
phpunit.dist.xml
File metadata and controls
33 lines (31 loc) · 1.18 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
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
failOnDeprecation="true"
failOnNotice="true"
failOnPhpunitDeprecation="true"
failOnIncomplete="true"
failOnEmptyTestSuite="true"
failOnRisky="true"
failOnSkipped="true"
failOnWarning="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnPhpunitDeprecations="true">
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests</directory>
</testsuite>
<testsuite name="Unit">
<directory>./tests/Unit</directory>
</testsuite>
<testsuite name="Integration">
<directory>./tests/Integration</directory>
</testsuite>
</testsuites>
<php>
<!-- <env name="NEO4J_ADDRESS" value="<put your address here>"/>-->
<!-- <env name="NEO4J_USERNAME" value="<put your name here>"/>-->
<!-- <env name="NEO4J_PASSWORD" value="<put your password here>"/>-->
</php>
</phpunit>