27 lines
875 B
XML
27 lines
875 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.6/phpunit.xsd"
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
>
|
|
|
|
<testsuites>
|
|
<testsuite name="Unit-Testsuite">
|
|
<directory>tests/unit</directory>
|
|
</testsuite>
|
|
<testsuite name="Functional-Testsuite">
|
|
<directory>tests/functional/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|