Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jlamim
Created August 29, 2016 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlamim/ffab582b1182735de80d4ade06ccad3c to your computer and use it in GitHub Desktop.
Save jlamim/ffab582b1182735de80d4ade06ccad3c to your computer and use it in GitHub Desktop.
Testes unitários com PHPUnit no CodeIgniter
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
bootstrap="tests/Bootstrap.php">
<testsuites>
<testsuite name="CITools Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./system/</directory>
</whitelist>
</filter>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment