-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpunit.xml
More file actions
43 lines (42 loc) · 1.65 KB
/
Copy pathphpunit.xml
File metadata and controls
43 lines (42 loc) · 1.65 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../include/vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap-unit.php"
cacheDirectory=".phpunit.cache"
colors="true"
failOnWarning="true"
failOnNotice="true"
failOnDeprecation="true"
beStrictAboutOutputDuringTests="false">
<php>
<ini name="error_reporting" value="-1"/>
<env name="CACTI_TEST_BOOTSTRAP" value="1"/>
</php>
<testsuites>
<testsuite name="Plugin gpsmap">
<directory>tests/Unit</directory>
<directory>tests/Security</directory>
<directory>tests/Integration</directory>
</testsuite>
</testsuites>
<!--
Pest reads this PHPUnit-compatible configuration through Cacti's
Composer-managed vendor tree, checked out alongside this plugin by
the CI workflow (see .github/workflows/plugin-ci-workflow.yml).
-->
<source>
<include>
<file>class/hosts_class.php</file>
<file>gpsmap_security.php</file>
<file>includes/polling/functions.php</file>
<file>includes/polling/processregion.php</file>
<file>includes/polling/coveragexml.php</file>
<file>includes/polling/kmlcreation.php</file>
<file>includes/polling/iconskml.php</file>
<file>includes/icons.php</file>
<file>includes/customicons.php</file>
<file>includes/dns.php</file>
<file>includes/polling.php</file>
</include>
</source>
</phpunit>