forked from mayflower/PHProjekt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
30 lines (26 loc) · 922 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
<phpunit
bootstrap="phprojekt/tests/UnitTests/Bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
strict="true">
<php>
<includePath>phprojekt/tests/UnitTests/</includePath>
<env name="P6_TEST_CONFIG" value="phprojekt/tests/UnitTests/configuration.php"/>
</php>
<testsuites>
<testsuite name="Phprojekt Test Suite">
<directory>phprojekt/tests/UnitTests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>phprojekt/application</directory>
<directory>phprojekt/library/Phprojekt</directory>
<file>phprojekt/library/Phprojekt.php</file>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="coverage" charset="UTF-8" yui="true" highlight="true"/>
</logging>
</phpunit>