forked from MissionalDigerati/joshua_project_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.sample.xml
30 lines (30 loc) · 1.19 KB
/
phpunit.sample.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
<phpunit bootstrap="./Tests/bootstrap.php">
<php>
<env name="site_url" value="http://joshua.api.local"/>
</php>
<testsuites>
<testsuite>
<directory>.</directory>
</testsuite>
<testsuite name="Continent">
<file>Tests/v1/Integration/ContinentsTest.php</file>
<file>Tests/v1/Unit/QueryGenerators/ContinentTest.php</file>
</testsuite>
<testsuite name="Country">
<file>Tests/v1/Integration/CountriesTest.php</file>
<file>Tests/v1/Unit/QueryGenerators/CountryTest.php</file>
</testsuite>
<testsuite name="Language">
<file>Tests/v1/Integration/LanguagesTest.php</file>
<file>Tests/v1/Unit/QueryGenerators/LanguageTest.php</file>
</testsuite>
<testsuite name="PeopleGroup">
<file>Tests/v1/Integration/PeopleGroupsTest.php</file>
<file>Tests/v1/Unit/QueryGenerators/PeopleGroupTest.php</file>
</testsuite>
<testsuite name="Region">
<file>Tests/v1/Integration/RegionsTest.php</file>
<file>Tests/v1/Unit/QueryGenerators/RegionTest.php</file>
</testsuite>
</testsuites>
</phpunit>