forked from dcousineau/orlex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
37 lines (32 loc) · 1.17 KB
/
phpunit.xml.dist
File metadata and controls
37 lines (32 loc) · 1.17 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
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="false"
verbose="false">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php" phpVersion="5.4.0" phpVersionOperator=">=">./tests/Orlex/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
</whitelist>
</filter>
<!--<logging>-->
<!--<log type="coverage-html" target="reports/coverage/" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>-->
<!--<log type="junit" target="reports/coverage.xml" logIncompleteSkipped="false"/>-->
<!--</logging>-->
</phpunit>