-
Notifications
You must be signed in to change notification settings - Fork 5
/
phpunit.xml
32 lines (29 loc) · 843 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
29
30
31
32
<phpunit
backupGlobals="true"
backupStaticAttributes="false"
bootstrap=".Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
cacheResultFile=".Build/.phpunit.result.cache"
colors="true"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="false"
>
<!-- all tests in the test dir -->
<testsuites>
<testsuite name="cfc_league_fe Unit Tests">
<directory>Tests/</directory>
</testsuite>
</testsuites>
<!-- only the tests in group unit -->
<groups>
<include>
<group>unit</group>
</include>
</groups>
</phpunit>