mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-06-01 06:04:04 +08:00
PHPUnit supports config files with both these names, but will use phpunit.xml over the .dist version. Renaming our file lets users add/edit their own phpunit.xml without editing a BuddyPress core file. git-svn-id: https://buddypress.svn.wordpress.org/trunk@8098 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
14 lines
304 B
XML
14 lines
304 B
XML
<phpunit
|
|
bootstrap="bootstrap.php"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite>
|
|
<directory suffix=".php">./testcases/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|