-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml
53 lines (53 loc) · 2.11 KB
/
phpunit.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
<testsuites>
bootstrap="vendor/autoload.php"
<testsuite name="Unit">
colors="true"
<directory suffix="Test.php">./tests/Unit</directory>
>
</testsuite>
<testsuites>
<testsuite name="Feature">
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Feature</directory>
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuite>
</testsuites>
<testsuite name="Feature">
<coverage/>
<directory suffix="Test.php">./tests/Feature</directory>
<php>
</testsuite>
<env name="APP_ENV" value="testing"/>
</testsuites>
<env name="BCRYPT_ROUNDS" value="4"/>
<coverage processUncoveredFiles="true">
<env name="CACHE_DRIVER" value="array"/>
<include>
<env name="DB_CONNECTION" value="mysql"/>
<directory suffix=".php">./app</directory>
<env name="DB_DATABASE" value="wave_testing"/>
</include>
<env name="MAIL_MAILER" value="array"/>
</coverage>
<env name="QUEUE_CONNECTION" value="sync"/>
<php>
<env name="SESSION_DRIVER" value="array"/>
<env name="APP_ENV" value="testing"/>
<env name="TELESCOPE_ENABLED" value="false"/>
<env name="BCRYPT_ROUNDS" value="4"/>
</php>
<env name="CACHE_DRIVER" value="array"/>
<source>
<env name="DB_CONNECTION" value="mysql"/>
<include>
<env name="DB_DATABASE" value="wave_testing"/>
<directory suffix=".php">./app</directory>
<env name="MAIL_MAILER" value="array"/>
</include>
<env name="QUEUE_CONNECTION" value="sync"/>
</source>
</phpunit>