Skip to content

Commit 1c8e31a

Browse files
author
Greg Bowler
committed
Improve PHPUnit
1 parent 46f73d3 commit 1c8e31a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/.idea
22
/vendor
3-
/*.phar
3+
/*.phar
4+
.phpunit*

test/unit/phpunit.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0"?>
22
<phpunit colors="true">
33
<testsuites>
4-
<testsuite>
4+
<testsuite name="main">
55
<directory suffix="Test.php">.</directory>
66
</testsuite>
77
</testsuites>
88

99
<logging>
1010
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" />
11-
<log type="coverage-html" target="./_coverage" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70" />
11+
<log type="coverage-html" target="./_coverage" lowUpperBound="35" highLowerBound="70" />
1212
</logging>
1313

1414
<filter>

0 commit comments

Comments
 (0)