Skip to content
Snippets Groups Projects
phpunit.xml 795 B
Newer Older
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
    <testsuites>
        <testsuite name="Maarch Core Test Suite">
            <directory>core/Test</directory>
        </testsuite>
    </testsuites>
    <filter>
      <whitelist>
Giovannoni Laurent's avatar
Giovannoni Laurent committed
          <directory suffix="Test.php">core/Test</directory>
          <directory suffix=".php">core/Controllers</directory>
          <directory suffix=".php">core/Models</directory>
      </whitelist>
    </filter>
    <logging>
        <log type="coverage-clover" target="core/Test/build/tests-clover.xml"/>
        <log type="junit"           target="core/Test/build/tests-phpunit.xml" logIncompleteSkipped="false"/>
        <log type="coverage-html"   target="core/Test/build" lowUpperBound="35" highLowerBound="70"/>
    </logging>
</phpunit>