Project

General

Profile

Download (1.26 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="phpunit.unit">
27
            <directory>src/unit/</directory>
28
        </testsuite>
29
    </testsuites>
30

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

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