PluginProbe
Packeta / 2.0.9
Packeta v2.0.9
2.3.2 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 All 56 releases
packeta / phpunit.xml.dist

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

51 lines 1.4 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="Project Test Suite">
41 <directory>tests</directory>
42 </testsuite>
43 </testsuites>
44 <source>
45 <include>
46 <directory>src</directory>
47 </include>
48 </source>
49 <coverage/>
50 </phpunit>
51