Skip to content

Instantly share code, notes, and snippets.

@helmerdavila
Created October 19, 2015 04:48
Show Gist options
  • Save helmerdavila/80e587d14ef2a4825813 to your computer and use it in GitHub Desktop.
Save helmerdavila/80e587d14ef2a4825813 to your computer and use it in GitHub Desktop.
Separate folders for PhpUnit Laravel Test
// 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