29 lines
733 B
XML
29 lines
733 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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="bootstrap.php">
|
|
<php>
|
|
<!-- -->
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="Project Test Suite">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src</directory>
|
|
<exclude>
|
|
<directory>./vendor</directory>
|
|
<directory>./tests</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
</phpunit>
|