Skip to content

Commit 360e47d

Browse files
author
Nick Goris
committed
I know, I know, this is not how I’m supposed to do it, but I can't think of something better.
1 parent 8dd6272 commit 360e47d

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea
22
composer.lock
33
vendor
4+
build

phpunit.xml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,20 @@
88
processIsolation="false"
99
stopOnFailure="false">
1010
<testsuites>
11-
<testsuite name="Application Test Suite">
12-
<directory suffix="Test.php">./tests</directory>
11+
<testsuite name="Nckg Test Suite">
12+
<directory>tests</directory>
1313
</testsuite>
1414
</testsuites>
15+
<filter>
16+
<whitelist>
17+
<directory suffix=".php">src/</directory>
18+
</whitelist>
19+
</filter>
20+
<logging>
21+
<log type="tap" target="build/report.tap"/>
22+
<log type="junit" target="build/report.junit.xml"/>
23+
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
24+
<log type="coverage-text" target="build/coverage.txt"/>
25+
<log type="coverage-clover" target="build/logs/clover.xml"/>
26+
</logging>
1527
</phpunit>

0 commit comments

Comments
 (0)