1
0
mirror of https://github.com/danog/math.git synced 2024-12-04 10:18:08 +01:00
math/phpunit-dist.xml
Benjamin Morel 1197dd2b81 Calculator detect test is now run separately
This avoids the risk of this test being run before the main tests, and overriding the calculator set by the bootstrap script.
2015-01-27 18:44:21 +01:00

15 lines
465 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="phpunit-bootstrap.php">
<testsuites>
<testsuite name="Brick\Math test suite">
<directory>tests</directory>
<exclude>tests/CalculatorDetectTest.php</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>src</directory>
</whitelist>
</filter>
</phpunit>