This repository has been archived by the owner on Sep 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
phpunit.xml.dist
66 lines (66 loc) · 2.38 KB
/
phpunit.xml.dist
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
bootstrap="tests/TestsBootstrap.php"
colors="true">
<testsuites>
<testsuite name="core">
<directory>core/tests</directory>
</testsuite>
<testsuite name="api">
<directory>modules/api/tests</directory>
</testsuite>
<testsuite name="archive">
<directory>modules/archive/tests</directory>
</testsuite>
<testsuite name="cleanup">
<directory>modules/cleanup/tests</directory>
</testsuite>
<testsuite name="communityagreement">
<directory>modules/communityagreement/tests</directory>
</testsuite>
<testsuite name="javauploaddownload">
<directory>modules/javauploaddownload/tests</directory>
</testsuite>
<testsuite name="keyfiles">
<directory>modules/keyfiles/tests</directory>
</testsuite>
<testsuite name="oai">
<directory>modules/oai/tests</directory>
</testsuite>
<testsuite name="oauth">
<directory>modules/oauth/tests</directory>
</testsuite>
<testsuite name="packages">
<directory>modules/packages/tests</directory>
</testsuite>
<testsuite name="readmes">
<directory>modules/readmes/tests</directory>
</testsuite>
<!--
<testsuite name="remoteprocessing">
<directory>modules/remoteprocessing/tests</directory>
</testsuite>
-->
<testsuite name="sizequota">
<directory>modules/sizequota/tests</directory>
</testsuite>
<testsuite name="validation">
<directory>modules/validation/tests</directory>
</testsuite>
<testsuite name="visualize">
<directory>modules/visualize/tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">core</directory>
<directory suffix=".php">modules</directory>
<directory suffix=".php">notification</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="log/clover.xml"/>
<log type="junit" target="log/junit.xml"/>
</logging>
</phpunit>