This repository has been archived by the owner on Aug 14, 2021. It is now read-only.
generated from mimmi20/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
47 lines (44 loc) · 1.55 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
beStrictAboutChangesToGlobalState="true"
beStrictAboutCoversAnnotation="false"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
beStrictAboutResourceUsageDuringSmallTests="true"
failOnEmptyTestSuite="true"
failOnIncomplete="true"
failOnRisky="true"
failOnSkipped="true"
failOnWarning="true"
verbose="false"
bootstrap="vendor/autoload.php"
enforceTimeLimit="false"
executionOrder="default"
resolveDependencies="true"
>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="memory_limit" value="-1"/>
<ini name="date.timezone" value="UTC"/>
<ini name="zend.assertions" value="1"/>
<ini name="assert.exception" value="On"/>
<ini name="intl.default_locale" value="de"/>
<ini name="intl.use_exceptions" value="1"/>
</php>
<testsuite name="Template Test Suite">
<directory>tests/</directory>
</testsuite>
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
<include>
<directory suffix=".php">src/</directory>
</include>
<report>
<text outputFile="php://stdout" showUncoveredFiles="true" showOnlySummary="false"/>
</report>
</coverage>
</phpunit>