-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·45 lines (44 loc) · 1.59 KB
/
phpunit.xml
File metadata and controls
executable file
·45 lines (44 loc) · 1.59 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
bootstrap="_tests/_bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
cacheTokens="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
verbose="false">
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
</logging>
<filter>
<whitelist>
<directory suffix=".php">Base/</directory>
<directory suffix=".php">ColumnType/</directory>
<directory suffix=".php">ConfigStorage/</directory>
<directory suffix=".php">DataExchange/</directory>
<directory suffix=".php">QueryBuilder/</directory>
<directory suffix=".php">Search/</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="ALL">
<directory>_tests/BasicTests</directory>
<directory>_tests/DataExchange</directory>
<directory>_tests/CRUD</directory>
<directory>_tests/Search</directory>
</testsuite>
</testsuites>
</phpunit>