forked from pradosoft/prado
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (25 loc) · 789 Bytes
/
phpunit.xml
File metadata and controls
25 lines (25 loc) · 789 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="./tests/test_tools/phpunit_bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false">
<testsuites>
<testsuite name="unit">
<directory suffix="Test.php">./tests/unit</directory>
</testsuite>
<testsuite name="functional">
<directory suffix="TestCase.php">./tests/FunctionalTests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">framework/</directory>
</whitelist>
</filter>
<logging>
<log type="testdox-html" target="./build/tests/index.html"/>
<log type="coverage-html" target="./build/tests/coverage" lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>