~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to phpunit.xml

  • Committer: Dan Garner
  • Date: 2015-03-26 14:08:33 UTC
  • Revision ID: git-v1:70d14044444f8dc5d602b99890d59dea46d9470c
Moved web servable files to web folder

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<phpunit bootstrap="tests/Bootstrap.php"
2
 
         colors="true"
3
 
         convertErrorsToExceptions="true"
4
 
         convertNoticesToExceptions="true"
5
 
         convertWarningsToExceptions="true">
6
 
      <testsuites>
7
 
        <testsuite name="Xibo Integration Test Suite">
8
 
            <directory suffix="Test.php">tests/integration/</directory>
9
 
            <directory suffix="Test.php">tests/integration/Widget/</directory>
10
 
            <directory suffix="Test.php">tests/integration/Cache/</directory>
11
 
        </testsuite>
12
 
      </testsuites>
13
 
    <groups>
14
 
      <exclude>
15
 
        <group>broken</group>
16
 
      </exclude>
17
 
    </groups>
18
 
    <filter>
19
 
        <whitelist>
20
 
            <directory>lib</directory>
21
 
        </whitelist>
22
 
    </filter>
23
 
    <logging>
24
 
        <log type="junit" target="results.xml" logIncompleteSkipped="true"/>
25
 
    </logging>
26
 
</phpunit>