forked from laravel/laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
38 lines (36 loc) · 1.42 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
defaultTestSuite="Feature,Unit"
colors="true">
<testsuites>
<testsuite name="Browser">
<directory suffix="Test.php">./tests/Browser</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="docs/coverage" lowUpperBound="30" highLowerBound="70"/>
<log type="coverage-text" target="php://stdout"/>
</logging>
<php>
<server name="APP_ENV" value="testing"/>
<!--<server name="BCRYPT_ROUNDS" value="4"/>-->
<server name="CACHE_DRIVER" value="array"/>
<server name="DB_CONNECTION" value="sqlite-memory"/>
<server name="MAIL_DRIVER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
</php>
</phpunit>