PluginProbe
Packeta / trunk
Packeta vtrunk
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 trunk, at phpunit.xml.dist

55 lines 1.6 KB
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 <!-- https://docs.phpunit.de/en/10.5/configuration.html -->
3 <phpunit
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
6 backupGlobals="false"
7 colors="true"
8 displayDetailsOnTestsThatTriggerWarnings="true"
9 enforceTimeLimit="false"
10 bootstrap="tests/bootstrap.php"
11 defaultTimeLimit="15"
12 cacheResultFile="temp/.phpunit.result.cache"
13 timeoutForMediumTests="30"
14 timeoutForLargeTests="270"
15 beStrictAboutOutputDuringTests="true"
16 beStrictAboutChangesToGlobalState="true"
17 beStrictAboutTestsThatDoNotTestAnything="true"
18 stderr="true"
19 failOnEmptyTestSuite="true"
20 failOnIncomplete="true"
21 failOnNotice="true"
22 failOnRisky="true"
23 failOnDeprecation="true"
24 failOnWarning="true"
25 displayDetailsOnIncompleteTests="true"
26 displayDetailsOnSkippedTests="true"
27 displayDetailsOnTestsThatTriggerDeprecations="true"
28 displayDetailsOnTestsThatTriggerErrors="true"
29 displayDetailsOnTestsThatTriggerNotices="true"
30 beStrictAboutCoverageMetadata="true"
31 displayDetailsOnPhpunitDeprecations="true"
32 failOnPhpunitDeprecation="true"
33 >
34 <php>
35 <ini name="error_reporting" value="-1"/>
36 <server name="APP_ENV" value="test" force="true"/>
37 </php>
38
39 <testsuites>
40 <testsuite name="unit">
41 <directory>tests/Core</directory>
42 <directory>tests/Module</directory>
43 </testsuite>
44 <testsuite name="integration">
45 <directory>tests/Integration</directory>
46 </testsuite>
47 </testsuites>
48 <source>
49 <include>
50 <directory>src</directory>
51 </include>
52 </source>
53 <coverage/>
54 </phpunit>
55