2014-09-11 14:50:31 +02:00
|
|
|
<phpunit
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
|
|
|
|
|
colors="true"
|
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
|
convertWarningsToExceptions="true"
|
2015-06-23 07:18:41 +02:00
|
|
|
verbose="true">
|
2014-09-11 14:50:31 +02:00
|
|
|
<testsuites>
|
|
|
|
|
<testsuite name="InfluxDB SDK Integration Tests">
|
2015-06-23 07:18:41 +02:00
|
|
|
<directory>tests/integration</directory>
|
|
|
|
|
</testsuite>
|
|
|
|
|
<testsuite name="InfluxDB SDK Unit Tests">
|
|
|
|
|
<directory>tests/unit</directory>
|
2014-09-11 14:50:31 +02:00
|
|
|
</testsuite>
|
|
|
|
|
</testsuites>
|
|
|
|
|
<filter>
|
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
|
|
|
<directory suffix=".php">src</directory>
|
|
|
|
|
</whitelist>
|
|
|
|
|
</filter>
|
|
|
|
|
</phpunit>
|