-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml.dist
118 lines (96 loc) · 5.19 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="API Commands Integration Tests">
<directory suffix="Test.php">./tests/Integration/Commands/Api</directory>
</testsuite>
<testsuite name="IPMA Commands Integration Tests">
<directory suffix="Test.php">./tests/Integration/Commands/Ipma</directory>
</testsuite>
<testsuite name="ProCiv Commands Integration Tests">
<directory suffix="Test.php">./tests/Integration/Commands/ProCiv</directory>
</testsuite>
<testsuite name="AcronymController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/AcronymController</directory>
</testsuite>
<testsuite name="AuthController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/AuthController</directory>
</testsuite>
<testsuite name="CountyController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/CountyController</directory>
</testsuite>
<testsuite name="DistrictController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/DistrictController</directory>
</testsuite>
<testsuite name="EventController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/EventController</directory>
</testsuite>
<testsuite name="FallbackController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/FallbackController</directory>
</testsuite>
<testsuite name="IpmaWarningController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/IpmaWarningController</directory>
</testsuite>
<testsuite name="OccurrenceController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/OccurrenceController</directory>
</testsuite>
<testsuite name="OccurrenceFamilyController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/OccurrenceFamilyController</directory>
</testsuite>
<testsuite name="OccurrenceReportController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/OccurrenceReportController</directory>
</testsuite>
<testsuite name="OccurrenceSpeciesController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/OccurrenceSpeciesController</directory>
</testsuite>
<testsuite name="OccurrenceStatusController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/OccurrenceStatusController</directory>
</testsuite>
<testsuite name="OccurrenceTypeController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/OccurrenceTypeController</directory>
</testsuite>
<testsuite name="ParishController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/ParishController</directory>
</testsuite>
<testsuite name="UserController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/UserController</directory>
</testsuite>
<testsuite name="UserProfileController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/UserProfileController</directory>
</testsuite>
<testsuite name="UserRoleController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/UserRoleController</directory>
</testsuite>
<testsuite name="WeatherObservationController Integration Tests">
<directory suffix="Test.php">./tests/Integration/Controllers/WeatherObservationController</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<server name="APP_ENV" value="testing"/>
<server name="APP_DEBUG" value="true"/>
<server name="APP_KEY" value="jqEQJBYvDujpmG3VPRYYVGVqEpX2DYf5"/>
<server name="JWT_SECRET" value="DXMcjZmgShcu0nhph7lPZmN2zIBDoNt8"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<server name="MAIL_DRIVER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<!-- Services -->
<server name="IPMA_API_HOSTNAME" value="https://api.ipma.pt"/>
<server name="PROCIV_WEBSITE_HOSTNAME" value="http://www.prociv.pt"/>
<!-- Database -->
<env name="DB_CONNECTION" value="testing"/>
</php>
</phpunit>