Last active
December 14, 2015 01:19
-
-
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/
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 | |
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