PluginProbe
Packeta / 1.7.0
Packeta v1.7.0
2.3.1 trunk 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.3.0 1.3.1 1.3.2 1.4 1.4.1 1.4.2 1.4.3 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.7.0 All 55 releases
packeta / phpunit.xml.dist

phpunit.xml.dist in Packeta 1.7.0, at phpunit.xml.dist

29 lines 773 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
3 <!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
4 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
6 backupGlobals="false"
7 colors="true"
8 bootstrap="tests/bootstrap.php"
9 >
10 <php>
11 <ini name="error_reporting" value="-1"/>
12 <server name="APP_ENV" value="test" force="true"/>
13 </php>
14
15 <testsuites>
16 <testsuite name="Project Test Suite">
17 <directory>tests</directory>
18 </testsuite>
19 </testsuites>
20
21 <coverage/>
22
23 <source>
24 <include>
25 <directory>src/Packetery/Core</directory>
26 </include>
27 </source>
28 </phpunit>
29