Created
October 19, 2015 04:48
-
-
Save helmerdavila/80e587d14ef2a4825813 to your computer and use it in GitHub Desktop.
Separate folders for PhpUnit Laravel Test
This file contains 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
// phpunit.xml | |
<testsuites> | |
<testsuite name="unit"> | |
<directory>./app/tests/unit/</directory> | |
</testsuite> | |
<testsuite name="integration"> | |
<directory>./app/tests/integration/</directory> | |
</testsuite> | |
</testsuites> | |
// command for running one instance | |
// phpunit --testsuite integration |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment