forked from spinen/laravel-geometry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
62 lines (55 loc) · 2.01 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="UTF-8"?>
<!--
This is the "dist(ribution)" phpunit.xml.dist file. It sets the defaults that are then over written by any files in
phpunit.xml, which is then over wrote by flags passed in via the command line. The plan is that this file is to be
used by ci to do the full suit of tests, and a developer can copy this file to phpunit.xml to trim down some of the
options.
-->
<phpunit addUncoveredFilesFromWhitelist="true"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
processUncoveredFilesFromWhitelist="true"
stopOnFailure="false"
syntaxCheck="false"
verbose="true">
<testsuites>
<testsuite name="Garbage Man Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<php>
<!-- <env name="VARIABLE" value="value"/> -->
</php>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<exclude>
<!--<file>src/file.php</file>-->
<directory suffix=".php">src/config</directory>
</exclude>
</whitelist>
</filter>
<listeners>
<listener class="\Mockery\Adapter\Phpunit\TestListener"></listener>
</listeners>
<logging>
<log type="coverage-html"
target="./build/coverage"
title="Geometry Suite"
charset="UTF-8"
yui="true"
highlight="true"
lowUpperBound="35"
highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="json" target="./build/logs/logfile.json"/>
<log type="junit" target="./build/logs/junit.xml"
logIncompleteSkipped="true"/>
</logging>
</phpunit>