Last active
October 2, 2016 21:55
-
-
Save mchelen/828e74d3418cd2b55ee33ef30512a4e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ composer exec phpunit test/SampleTest.php | |
PHPUnit 5.5.5 by Sebastian Bergmann and contributors. | |
.. 2 / 2 (100%) | |
Time: 10 ms, Memory: 4.00MB | |
OK (2 tests, 6 assertions) | |
$ composer exec phpunit | |
PHPUnit 5.5.5 by Sebastian Bergmann and contributors. | |
W.. 3 / 3 (100%) | |
Time: 50 ms, Memory: 4.00MB | |
There was 1 warning: | |
1) Warning | |
No tests found in class "PHPUnit\Framework\TestCase". | |
WARNINGS! | |
Tests: 3, Assertions: 6, Warnings: 1. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit bootstrap="vendor/autoload.php"> | |
<testsuites> | |
<testsuite name="foo"> | |
<directory>test</directory> | |
</testsuite> | |
</testsuites> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment