blob: ce7d44f5518dc5b06e9f3054041559214cb969a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!-- See http://www.phpunit.de/manual/3.3/en/appendixes.configuration.html -->
<phpunit bootstrap="./bootstrap.php"
colors="false"
stopOnFailure="false">
<!-- convertErrorsToExceptions="true" -->
<!-- convertNoticesToExceptions="true" -->
<!-- convertWarningsToExceptions="true" -->
<testsuite name="MediaWiki Test Suite">
<directory>.</directory>
</testsuite>
<groups>
<exclude>
<group>Broken</group>
<group>Stub</group>
</exclude>
</groups>
</phpunit>
|