This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
phpunit.xml
40 lines (37 loc) · 1.7 KB
/
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
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
bootstrap="./application/tests/Bootstrap.php"
colors="true"
backupGlobals="false"
backupStaticAttributes="false"
verbose="true">
<testsuite name="OntoWiki Unit Tests">
<directory suffix="Test.php">application/tests/unit</directory>
</testsuite>
<testsuite name="OntoWiki Virtuoso Integration Tests">
<directory suffix="Test.php">application/tests/integration</directory>
</testsuite>
<testsuite name="OntoWiki ZendDB Integration Tests">
<directory suffix="Test.php">application/tests/integration</directory>
</testsuite>
<testsuite name="OntoWiki Extensions Tests">
<directory suffix="Test.php">extensions/</directory>
</testsuite>
<logging>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
<log type="coverage-html" target="./build/coverage" title="OntoWiki"/>
<log type="junit" target="./build/logs/junit.xml"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./application</directory>
<exclude>
<directory>./application/scripts</directory>
<directory>./application/tests</directory>
<directory>./application/shell.worker.client.php</directory>
<directory>./application/shell.worker.php</directory>
</exclude>
</whitelist>
</filter>
</phpunit>