-
Notifications
You must be signed in to change notification settings - Fork 11
/
phpunit.xml.dist
42 lines (36 loc) · 1.37 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
beStrictAboutOutputDuringTests="false"
>
<php>
<ini name="error_reporting" value="-1" />
</php>
<testsuites>
<testsuite name="CodeIgniter Gettext Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true" addUncoveredFilesFromWhitelist="true">
<directory>./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./code-coverage" charset="UTF-8"
yui="true" highlight="true"
lowUpperBound="50" highLowerBound="80"
showUncoveredFiles="true"
/>
<log type="coverage-clover" target="./code-coverage/coverage.xml"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false" showOnlySummary="true" />
<log type="junit" target="report/junit.xml" logIncompleteSkipped="true" />
</logging>
<php>
<const name="PHPUNIT_TESTING" value="TRUE"/>
<const name="BASEPATH" value="TRUE"/>
</php>
</phpunit>