mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-02-03 20:40:02 -05:00
...support. Currently expects three test-runners offering Debian Jessie, Ubuntu 16.04 LTS (Xenial) and CentOS 7. Removed all dependencies on the Icinga Web 2 test module, installing phpunit should suffice to run tests in a normal environment. This is a first attempt to make things easier, more to come.
18 lines
578 B
XML
18 lines
578 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
bootstrap="test/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Director PHP Unit tests">
|
|
<directory suffix=".php">test/php</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|