Skip to content

Commit

Permalink
Housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdoug committed Feb 13, 2013
1 parent aebde8e commit bb1cc9c
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,7 @@ pip-log.txt

# Mac crap
.DS_Store
/vendor
/composer.lock

/tests/coverage
48 changes: 48 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<phpunit backupGlobals="true"
backupStaticAttributes="false"
cacheTokens="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
printerClass="PHPUnit_TextUI_ResultPrinter"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
strict="false"
verbose="false">

<testsuites>
<testsuite name="My Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>

<logging>
<log type="coverage-html" target="tests/coverage" title="PHPUnit"
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="35" highLowerBound="70"/>
</logging>

<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">PHPUnit</directory>
<exclude>
<file>PHPUnit/Autoload.php</file>
<file>PHPUnit/Framework/Assert/Functions.php</file>
</exclude>
</whitelist>
<blacklist>
<directory suffix=".php">vendor</directory>
<exclude>
<file>PHPUnit/Autoload.php</file>
<file>PHPUnit/Framework/Assert/Functions.php</file>
</exclude>
</blacklist>
</filter>
</phpunit>

0 comments on commit bb1cc9c

Please sign in to comment.