Project

General

Profile

Download (1.4 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2

    
3
<!--
4
    Configuration for simple unit tests which do not require bootstrapping of drupal
5
    The test cases are located in ./src/unit-tests
6
-->
7
<phpunit>
8
    <php>
9
        <!--
10
            include_path: must point to the folder modules/cdm_dataportal
11
        -->
12
        <includePath>../..</includePath>
13

    
14
        <ini name="error_reporting" value="E_ALL"/>
15
        <!--
16
        <ini name="display_errors" value="TRUE"/>
17
        <ini name="display_startup_errors" value="TRUE"/>
18
        -->
19
    </php>
20

    
21

    
22
    <testsuites>
23
        <!--
24
            will add all *Test classes that are found in *Test.php files when the tests directory is
25
            recursively traversed -->
26
        <testsuite name="cdm_dataportal.unit">
27
            <directory>src/unit/</directory>
28
        </testsuite>
29
        <testsuite name="cdm_tokens.unit">
30
            <directory>../../cdm_tokens/test/src/unit/</directory>
31
        </testsuite>
32
    </testsuites>
33

    
34
    <logging>
35
        <!--
36
        <log type="coverage-html" target="target/phpunit/coverage" title="BankAccount"
37
             charset="UTF-8" yui="true" highlight="true"
38
             lowUpperBound="35" highLowerBound="70"/>
39
        <log type="coverage-clover" target="target/phpunit/clover.xml"/>
40
        -->
41
        <log type="junit" target="../../target/phpunit/junit.cdm-dataportal.unit.xml" logIncompleteSkipped="false"/>
42
    </logging>
43

    
44
</phpunit>
(9-9/10)