mirror of
https://github.com/danog/math.git
synced 2024-12-04 10:18:08 +01:00
1197dd2b81
This avoids the risk of this test being run before the main tests, and overriding the calculator set by the bootstrap script.
15 lines
465 B
XML
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>
|