Skip to content

Instantly share code, notes, and snippets.

@willmendesneto
Last active December 14, 2015 01:19
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 willmendesneto/5005522 to your computer and use it in GitHub Desktop.
Save willmendesneto/5005522 to your computer and use it in GitHub Desktop.
Gist do post "Testes no Codeigniter com CIUnit" no meu blog Link: http://willmendesnetoprojects.wordpress.com/2013/02/21/testes-no-codeigniter-com-ciunit/
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
stopOnFailure="false"
backupGlobals="false"
backupStaticAttributes="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
syntaxCheck="false"
cacheTokens="true"
verbose="false"
bootstrap="application/third_party/CIUnit/bootstrap_phpunit.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