Skip to content

Instantly share code, notes, and snippets.

@clauswitt
Created November 24, 2011 07:27
Show Gist options
  • Select an option

  • Save clauswitt/1390828 to your computer and use it in GitHub Desktop.

Select an option

Save clauswitt/1390828 to your computer and use it in GitHub Desktop.
A per package unit test configuration for FLOW3
<?xml version="1.0"?>
<phpunit strict="true"
bootstrap="UnitTestBootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="All tests">
<directory>../../Tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>../../Classes</directory>
</whitelist>
</filter>
<logging>
<log type="junit" target="../Reports/UnitTests.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment