Project

General

Profile

Download (1.11 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 defaultTestSuite="unit">
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
        <testsuite name="unit">
24
            <directory>src/unit/</directory>
25
        </testsuite>
26
    </testsuites>
27

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

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