PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.20
Booking for Appointments and Events Calendar – Amelia v1.2.20
2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / vendor / rmccue / requests / phpunit.xml.dist
ameliabooking / vendor / rmccue / requests Last commit date
library 2 years ago .codecov.yml 4 years ago CHANGELOG.md 2 years ago LICENSE 4 years ago README.md 2 years ago composer.json 2 years ago phpunit.xml.dist 4 years ago
phpunit.xml.dist
44 lines
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
5 backupGlobals="true"
6 bootstrap="tests/bootstrap.php"
7 colors="true"
8 verbose="true"
9 >
10 <testsuites>
11 <testsuite name="Authentication">
12 <directory suffix=".php">tests/Auth</directory>
13 </testsuite>
14 <testsuite name="Transports">
15 <directory suffix=".php">tests/Transport</directory>
16 </testsuite>
17 <testsuite name="Proxies">
18 <directory suffix=".php">tests/Proxy</directory>
19 </testsuite>
20 <testsuite name="General">
21 <file>tests/ChunkedEncoding.php</file>
22 <file>tests/Cookies.php</file>
23 <file>tests/Encoding.php</file>
24 <file>tests/IDNAEncoder.php</file>
25 <file>tests/IRI.php</file>
26 <file>tests/Requests.php</file>
27 <file>tests/Response/Headers.php</file>
28 <file>tests/Session.php</file>
29 <file>tests/SSL.php</file>
30 <file>tests/Utility/FilteredIterator.php</file>
31 </testsuite>
32 </testsuites>
33
34 <logging>
35 <log type="coverage-html" target="tests/coverage" lowUpperBound="35" highLowerBound="90"/>
36 </logging>
37
38 <filter>
39 <whitelist addUncoveredFilesFromWhitelist="true">
40 <directory suffix=".php">library</directory>
41 </whitelist>
42 </filter>
43 </phpunit>
44