You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="true">
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./src</directory>
|
|
<exclude>
|
|
<directory suffix="Test.php">./tests</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
|
|
</logging>
|
|
<testsuites>
|
|
<testsuite name="RouterOS API on PHP tests">
|
|
<directory suffix=".php">./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<php>
|
|
<env name="ROS_HOST" value="127.0.0.1"/>
|
|
<env name="ROS_USER" value="admin"/>
|
|
<env name="ROS_PASS" value="admin"/>
|
|
<env name="ROS_PORT_MODERN" value="8728"/>
|
|
<env name="ROS_PORT_LEGACY" value="18728"/>
|
|
</php>
|
|
</phpunit>
|