mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-04 20:47:53 +00:00
22 lines
582 B
XML
22 lines
582 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<phpunit
|
||
colors="true"
|
||
beStrictAboutTestsThatDoNotTestAnything="true"
|
||
beStrictAboutOutputDuringTests="true"
|
||
beStrictAboutTestSize="true"
|
||
beStrictAboutChangesToGlobalState="true"
|
||
>
|
||
<testsuites>
|
||
<testsuite name="PHP-ML Test Suite">
|
||
<directory>tests/*</directory>
|
||
</testsuite>
|
||
</testsuites>
|
||
|
||
<filter>
|
||
<whitelist processUncoveredFilesFromWhitelist="true">
|
||
<directory suffix=".php">src</directory>
|
||
</whitelist>
|
||
</filter>
|
||
|
||
</phpunit>
|