forked from cmfcmf/OpenWeatherMap-PHP-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
25 lines (22 loc) · 837 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<!--suppress XmlUnboundNsPrefix -->
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="cmfcmf/openweathermap-php-api unit test suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
<!-- <testsuite name="cmfcmf/openweathermap-php-api integration test suite">
<directory suffix="Test.php">./integTests</directory>
</testsuite> -->
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory suffix="Test.php">./</directory>
<directory suffix="Interface.php">./</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>