-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
45 lines (45 loc) · 1.67 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<!-- <testsuite name="Architecture">
<directory suffix="Test.php">./tests/Architecture</directory>
</testsuite> -->
</testsuites>
<coverage
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<report>
<clover outputFile="./.coverage/coverage.xml"/>
</report>
</coverage>
<logging>
<junit outputFile="./.coverage/junit.xml"/>
<teamcity outputFile="./.coverage/teamcity.txt"/>
</logging>
<php>
<server name="APP_ENV" value="testing"/>
<server name="APP_KEY" value="base64:08FBl6mvlpGeZ68j5AVNNUs/IBg4vsbpK0F0qBm+LHw="/>
<server name="DB_CONNECTION" value="pgsql"/>
<server name="DB_PORT" value="5432"/>
<server name="DB_DATABASE" value="laravel_pgenum"/>
<server name="DB_USERNAME" value="laravel_pgenum"/>
<server name="DB_PASSWORD" value="laravel_pgenum"/>
<server name="CACHE_DRIVER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
</php>
</phpunit>