Skip to content

Instantly share code, notes, and snippets.

@Tobi77
Created June 26, 2018 13:25
Show Gist options
  • Select an option

  • Save Tobi77/3c3d1ea16d07000b41b0b7c3652a493a to your computer and use it in GitHub Desktop.

Select an option

Save Tobi77/3c3d1ea16d07000b41b0b7c3652a493a to your computer and use it in GitHub Desktop.
<phpunit
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="../htdocs/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="false"
beStrictAboutTestsThatDoNotTestAnything="false"
>
<testsuites>
<testsuite name="Denkwerk tests">
<directory suffix="Test.php">../htdocs/typo3conf/ext/dw_*</directory>
</testsuite>
</testsuites>
<logging>
<log type="junit" target="phpunit.xml" logIncompleteSkipped="false"/>
</logging>
<filter>
<whitelist>
<directory suffix=".php">../htdocs/typo3conf/ext/dw_*</directory>
<exclude>
<directory>../htdocs/typo3conf/ext/*/Configuration</directory>
<directory>../htdocs/typo3conf/ext/*/Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>
@Tobi77
Copy link
Author

Tobi77 commented Jun 26, 2018

vendor/bin/phpunit -c ../test/UnitTests.xml --coverage-html=coverage

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment