Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created May 25, 2017 15:54
Show Gist options
  • Save NandoKstroNet/34dc75f02e464365a24fa00b996b5819 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/34dc75f02e464365a24fa00b996b5819 to your computer and use it in GitHub Desktop.
Arquivo de configuração de nossa suite de testes com PHPUnit criada no post sobre Silex e Testes da Code Experts Learning
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./bootstrap.php"
cacheTokens="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="false">
<testsuites>
<testsuite name="Silex Tests">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src/</directory>
</whitelist>
</filter>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment