forked from PHPIDS/PHPIDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
43 lines (40 loc) · 1.42 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
convertNoticesToExceptions="true"
mapTestClassNameToCoveredClassName="true"
strict="true"
verbose="true"
colors="true"
timeoutForLargeTests="100"
bootstrap="tests/IDS/Tests/bootstrap.php">
<testsuites>
<testsuite name="PHPIDS">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./lib</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="docs/coverage/"
charset="UTF-8"
yui="true"
highlight="true"
lowUpperBound="60"
highLowerBound="80" />
</logging>
<php>
<var name="IDS_TEMP_DIR" value="/tmp"/>
<var name="IDS_CONFIG" value="lib/IDS/Config/Config.ini.php"/>
<var name="IDS_FILTER_CACHE_FILE" value="/tmp/default_filter.cache"/>
<var name="IDS_FILTER_TYPE" value="xml"/>
<var name="IDS_FILTER_SET" value="lib/IDS/default_filter.xml"/>
<var name="IDS_FILTER_SET_XML" value="lib/IDS/default_filter.xml"/>
<var name="IDS_FILTER_SET_JSON" value="lib/IDS/default_filter.json"/>
</php>
</phpunit>