~xibo-maintainers/xibo/tempel

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
<phpunit bootstrap="tests/Bootstrap.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true">
      <testsuites>
        <testsuite name="Xibo Integration Test Suite">
            <directory suffix="Test.php">tests/integration/</directory>
            <directory suffix="Test.php">tests/integration/Widget/</directory>
            <directory suffix="Test.php">tests/integration/Cache/</directory>
        </testsuite>
      </testsuites>
    <groups>
      <exclude>
        <group>broken</group>
      </exclude>
    </groups>
    <filter>
        <whitelist>
            <directory>lib</directory>
        </whitelist>
    </filter>
    <logging>
        <log type="junit" target="results.xml" logIncompleteSkipped="true"/>
    </logging>
</phpunit>