2016-04-04 20:38:51 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
2018-01-31 18:29:19 +00:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
2016-04-04 20:38:51 +00:00
|
|
|
colors="true"
|
|
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
|
|
beStrictAboutOutputDuringTests="true"
|
|
|
|
beStrictAboutChangesToGlobalState="true"
|
2018-01-31 18:32:18 +00:00
|
|
|
enforceTimeLimit="true"
|
2016-04-04 20:38:51 +00:00
|
|
|
>
|
2017-11-22 21:16:10 +00:00
|
|
|
<testsuite name="PHP-ML Test Suite">
|
|
|
|
<directory>tests/*</directory>
|
|
|
|
</testsuite>
|
2016-05-03 10:03:36 +00:00
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
|
|
<directory suffix=".php">src</directory>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
|
2018-01-30 21:05:47 +00:00
|
|
|
<php>
|
|
|
|
<ini name="error_reporting" value="E_ALL" />
|
|
|
|
</php>
|
|
|
|
|
2016-04-04 20:38:51 +00:00
|
|
|
</phpunit>
|