15 lines
479 B
XML
15 lines
479 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
|
|
bootstrap="tests/autoload.php">
|
|
|
|
<testsuites>
|
|
<testsuite name="Unit tests">
|
|
<directory>tests/unit/</directory>
|
|
</testsuite>
|
|
<testsuite name="Functional tests">
|
|
<directory>tests/functional/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|