PluginProbe
Boxzilla – WordPress Popup Builder / 3.4.5
Boxzilla – WordPress Popup Builder v3.4.5
3.4.11 3.4.10 3.4.9 3.4.3 3.4.4 3.4.5 3.4.6 3.4.7 3.4.8 trunk 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.10 3.1.11 3.1.12 3.1.13 3.1.14 3.1.15 3.1.16 3.1.17 3.1.18 All 72 releases
boxzilla / phpunit.xml

phpunit.xml in Boxzilla – WordPress Popup Builder 3.4.5, at phpunit.xml

27 lines 798 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
4 bootstrap="tests/bootstrap.php"
5 cacheDirectory=".phpunit.cache"
6 executionOrder="depends,defects"
7 requireCoverageMetadata="true"
8 beStrictAboutCoverageMetadata="true"
9 beStrictAboutOutputDuringTests="true"
10 displayDetailsOnPhpunitDeprecations="true"
11 failOnPhpunitDeprecation="true"
12 failOnRisky="true"
13 failOnWarning="true">
14
15 <testsuites>
16 <testsuite name="default">
17 <directory>tests</directory>
18 </testsuite>
19 </testsuites>
20
21 <source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
22 <include>
23 <directory>src</directory>
24 </include>
25 </source>
26 </phpunit>
27