Skip to content
Snippets Groups Projects
phpunit.xml 1.3 KiB
Newer Older
Florian Azizian's avatar
Florian Azizian committed
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="test/unitTests/define.php">
    <testsuites>
        <testsuite name="Maarch Parapheur Test Suite">
Damien's avatar
Damien committed
            <file>test/unitTests/core/AuthenticationControllerTest.php</file>
            <file>test/unitTests/core/PasswordControllerTest.php</file>
Damien's avatar
Damien committed
            <file>test/unitTests/app/user/UserControllerTest.php</file>
            <file>test/unitTests/app/configuration/ConfigurationControllerTest.php</file>
            <file>test/unitTests/app/document/DocumentControllerTest.php</file>
            <file>test/unitTests/app/group/GroupControllerTest.php</file>
            <file>test/unitTests/app/workflow/WorkflowTemplateControllerTest.php</file>
Damien's avatar
Damien committed
            <file>test/unitTests/app/history/HistoryControllerTest.php</file>
Florian Azizian's avatar
Florian Azizian committed
        </testsuite>
    </testsuites>
    <filter>
      <whitelist>
          <directory suffix="Test.php">test</directory>
          <directory suffix=".php">src</directory>
      </whitelist>
    </filter>
    <logging>
        <log type="coverage-clover" target="test/unitTests/build/tests-clover.xml"/>
        <log type="junit"           target="test/unitTests/build/tests-phpunit.xml"/>
Florian Azizian's avatar
Florian Azizian committed
        <log type="coverage-html"   target="test/unitTests/build" lowUpperBound="35" highLowerBound="70"/>
    </logging>
</phpunit>