-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
30 lines (30 loc) · 958 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="dev/test/SeneTestCase.php"
executionOrder="depends,defects"
forceCoversAnnotation="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
failOnRisky="true"
failOnWarning="true"
verbose="true">
<php>
<server name='HTTP_HOST' value='http://localhost' />
<server name='SEME_ERR_BYPASS' value='1' />
</php>
<testsuites>
<testsuite name="Dev">
<directory>dev/test</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="false">
<include>
<directory>kero/sine</directory>
<directory>app/view</directory>
<directory>app/model</directory>
<directory>app/controller</directory>
</include>
</coverage>
</phpunit>