Last active
August 29, 2015 14:13
-
-
Save igmoweb/bfaab7e99833a3758843 to your computer and use it in GitHub Desktop.
phpunit.xml for multisites
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
<phpunit | |
bootstrap="tests/bootstrap.php" | |
backupGlobals="false" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="true" | |
convertWarningsToExceptions="true" | |
> | |
<php> | |
<const name="WP_TESTS_MULTISITE" value="1" /> | |
</php> | |
<testsuites> | |
<testsuite> | |
<directory prefix="test-" suffix=".php">./tests/</directory> | |
</testsuite> | |
</testsuites> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment