2016-09-26 12:04:38 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2017-11-14 14:03:44 +03:00
|
|
|
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
|
|
|
|
backupGlobals="false"
|
|
|
|
colors="true"
|
|
|
|
bootstrap="vendor/autoload.php">
|
|
|
|
<php>
|
|
|
|
<ini name="error_reporting" value="-1"/>
|
|
|
|
</php>
|
2016-09-26 12:04:38 +03:00
|
|
|
|
|
|
|
<testsuites>
|
2019-12-30 18:47:37 +03:00
|
|
|
<testsuite name="all_tests">
|
2017-11-14 14:03:44 +03:00
|
|
|
<directory>tests</directory>
|
2016-09-26 12:04:38 +03:00
|
|
|
</testsuite>
|
2019-12-30 18:47:37 +03:00
|
|
|
<testsuite name="only_fast_tests">
|
|
|
|
<directory>tests</directory>
|
|
|
|
<exclude>tests/SlowTests</exclude>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="only_slow_tests">
|
|
|
|
<directory>tests/SlowTests</directory>
|
|
|
|
</testsuite>
|
2016-09-26 12:04:38 +03:00
|
|
|
</testsuites>
|
|
|
|
|
2017-11-14 14:03:44 +03:00
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory>src</directory>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2019-12-30 18:47:37 +03:00
|
|
|
</phpunit>
|