-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathphpunit.xml
More file actions
38 lines (37 loc) · 1.36 KB
/
Copy pathphpunit.xml
File metadata and controls
38 lines (37 loc) · 1.36 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
<?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 ReportIt">
<directory>tests/Security</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>setup.php</file>
<file>lib/funct_calculate.php</file>
<file>lib/funct_export.php</file>
<file>lib/funct_html.php</file>
<file>lib/funct_online.php</file>
<file>lib/funct_reports.php</file>
<file>lib/funct_shared.php</file>
<file>lib/funct_validate.php</file>
</include>
</source>
</phpunit>