File tree Expand file tree Collapse file tree 1 file changed +25
-8
lines changed Expand file tree Collapse file tree 1 file changed +25
-8
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
3
3
<phpunit
4
+ bootstrap =" vendor/autoload.php"
4
5
colors =" true"
5
- beStrictAboutOutputDuringTests =" true"
6
- forceCoversAnnotation =" true"
7
6
verbose =" true"
8
- bootstrap =" vendor/autoload.php"
7
+ forceCoversAnnotation =" true"
8
+ checkForUnintentionallyCoveredCode =" false"
9
9
>
10
- <testsuite >
11
- <directory >./tests/unit</directory >
12
- </testsuite >
10
+ <testsuites >
11
+ <testsuite name =" unit" >
12
+ <directory >./tests/unit/</directory >
13
+ </testsuite >
14
+ <testsuite name =" integration" >
15
+ <directory >./tests/integration/</directory >
16
+ </testsuite >
17
+ </testsuites >
13
18
<filter >
14
19
<whitelist >
15
- <directory suffix =" .php" >./ src/ </directory >
20
+ <directory suffix =" .php" >src</directory >
16
21
</whitelist >
17
22
</filter >
23
+ <logging >
24
+ <log type =" coverage-html"
25
+ target =" build/coverage"
26
+ charset =" UTF-8"
27
+ yui =" true"
28
+ highlight =" false"
29
+ lowUpperBound =" 35"
30
+ highLowerBound =" 70" />
31
+ <log type =" coverage-clover" target =" build/logs/clover.xml" />
32
+ <log type =" junit" target =" build/logs/junit.xml" logIncompleteSkipped =" false" />
33
+ </logging >
18
34
<listeners >
19
- <listener class =" Mockery\Adapter\Phpunit\TestListener" ></listener >
35
+ <listener class =" Mockery\Adapter\Phpunit\TestListener"
36
+ file =" vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php" ></listener >
20
37
</listeners >
21
38
</phpunit >
You can’t perform that action at this time.
0 commit comments