Skip to content

Commit ed6bdee

Browse files
committed
add phpunit config options
1 parent 568c203 commit ed6bdee

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

coverage/MentionClient.php.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ <h4>Legend</h4>
10231023
<span class="warning"><strong>Dead Code</strong></span>
10241024
</p>
10251025
<p>
1026-
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 2.2.4</a> using <a href="http://php.net/" target="_top">PHP 5.6.16</a> and <a href="https://phpunit.de/">PHPUnit 4.8.19-1-g83498fe</a> at Wed Dec 9 18:57:19 UTC 2015.</small>
1026+
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 2.2.4</a> using <a href="http://php.net/" target="_top">PHP 5.6.16</a> and <a href="https://phpunit.de/">PHPUnit 4.8.19-1-g83498fe</a> at Wed Dec 9 19:04:06 UTC 2015.</small>
10271027
</p>
10281028
<a title="Back to the top" id="toplink" href="#"><span class="glyphicon glyphicon-arrow-up"></span></a>
10291029
</footer>

coverage/dashboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ <h3>Project Risks</h3>
136136
<footer>
137137
<hr/>
138138
<p>
139-
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 2.2.4</a> using <a href="http://php.net/" target="_top">PHP 5.6.16</a> and <a href="https://phpunit.de/">PHPUnit 4.8.19-1-g83498fe</a> at Wed Dec 9 18:57:19 UTC 2015.</small>
139+
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 2.2.4</a> using <a href="http://php.net/" target="_top">PHP 5.6.16</a> and <a href="https://phpunit.de/">PHPUnit 4.8.19-1-g83498fe</a> at Wed Dec 9 19:04:06 UTC 2015.</small>
140140
</p>
141141
</footer>
142142
</div>

coverage/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h4>Legend</h4>
108108
<span class="success"><strong>High</strong>: 90% to 100%</span>
109109
</p>
110110
<p>
111-
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 2.2.4</a> using <a href="http://php.net/" target="_top">PHP 5.6.16</a> and <a href="https://phpunit.de/">PHPUnit 4.8.19-1-g83498fe</a> at Wed Dec 9 18:57:19 UTC 2015.</small>
111+
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 2.2.4</a> using <a href="http://php.net/" target="_top">PHP 5.6.16</a> and <a href="https://phpunit.de/">PHPUnit 4.8.19-1-g83498fe</a> at Wed Dec 9 19:04:06 UTC 2015.</small>
112112
</p>
113113
</footer>
114114
</div>

phpunit.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0"?>
2-
<phpunit bootstrap="tests/bootstrap.php">
2+
<phpunit
3+
bootstrap="tests/bootstrap.php"
4+
beStrictAboutTestsThatDoNotTestAnything="true">
35
<testsuites>
46
<testsuite name="comments">
57
<directory suffix="Test.php">tests</directory>
@@ -13,4 +15,7 @@
1315
</exclude>
1416
</whitelist>
1517
</filter>
18+
<logging>
19+
<log type="coverage-html" target="./coverage"/>
20+
</logging>
1621
</phpunit>

0 commit comments

Comments
 (0)