-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
phpunit.xml.dist
40 lines (34 loc) · 1.36 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
<!--
Copy and rename this file to phpunit.xml to customize.
The variables shown below must usually be defined in order to run the
functional tests. They may be set by customizing this file, or they may
be defined as environment variables. Alternately, you may run the
tests without defining these variables if you use the default values.
-->
<phpunit
bootstrap="../vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">unit</directory>
</testsuite>
<testsuite name="integration">
<directory suffix="Test.php">integration</directory>
</testsuite>
<testsuite name="functional">
<directory>functional</directory>
</testsuite>
</testsuites>
<php>
<!-- These variables may alternatively be set as environment variables. -->
<!--Uncomment and edit one of the lines below depending on DB platform.-->
<!--DB User must have create/drop permissions-->
<!-- <var name="UNISH_DB_URL" value="mysql://root:@127.0.0.1"/> -->
<!-- <var name="UNISH_DB_URL" value="pgsql://postgres:@localhost"/>-->
<!-- <var name="UNISH_DB_URL" value="sqlite://none/of/this/matters"/> -->
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
<includePath>.</includePath>
</php>
</phpunit>