-
-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathphpunit.xml
More file actions
29 lines (29 loc) · 925 Bytes
/
phpunit.xml
File metadata and controls
29 lines (29 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
processIsolation="false"
stopOnFailure="true">
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix="Test.php">./tests</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="RouterOS API on PHP tests">
<directory suffix=".php">./tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="ROS_HOST_MODERN" value="192.168.10.1"/>
<env name="ROS_HOST_LEGACY" value="192.168.10.1"/>
<env name="ROS_PORT_MODERN" value="8728"/>
<env name="ROS_PORT_LEGACY" value="18728"/>
<env name="ROS_USER" value="test"/>
<env name="ROS_PASS" value="test"/>
<env name="ROS_SSH_PORT" value="22"/>
</php>
</phpunit>