forked from allegro/toper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
28 lines (26 loc) · 873 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<phpunit backupGlobals="true"
backupStaticAttributes="false"
cacheTokens="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="false"
verbose="false"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="unit">
<directory>tests/unit/</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/integration/</directory>
</testsuite>
</testsuites>
</phpunit>