Skip to content
Snippets Groups Projects
Select Git revision
  • a6d2937876862c8f28d0119331bc7517e08bf84c
  • master default protected
  • 5.x
  • 7
  • 6.0.question
  • bg-php8
  • release_3.1.0
  • release_4.0.0
  • zf-3.0
  • zf-3.x
  • 6.0.6
  • 5.0.8
  • 5.0.7
  • 6.0.5
  • 5.0.6
  • 6.0.4
  • 5.0.5
  • 7.0.3
  • 7.0.2
  • 6.0.3
  • 6.0.2
  • 6.0.1
  • 5.0.4
  • 7.0.1
  • 5.0.3
  • 5.0.2
  • 5.0.1
  • 7.0.0
  • 6.0.0
  • 4.0.2
30 results

Module.php

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    phpunit.xml 915 B
    <?xml version="1.0" encoding="UTF-8"?>
    
    <phpunit bootstrap="init_autoloader.php" colors="true">
        <testsuites>
            <testsuite name="Default">
                <directory>./test/UnicaenDbImportUnitTest</directory>
            </testsuite>
        </testsuites>
    
        <logging>
            <!--<log type="junit" target="/tmp/phpunit/logs/junit.xml" />-->
            <!--<log type="coverage-clover" target="/tmp/phpunit/logs/clover.xml" />-->
            <log type="coverage-html" target="/tmp/phpunit/coverage" />
        </logging>
    
        <filter>
            <whitelist processUncoveredFilesFromWhitelist="true">
                <directory suffix=".php">src</directory>
            </whitelist>
        </filter>
    
        <groups>
    
        </groups>
        <!--
        <groups>
            <exclude>
                <group>disable</group>
                <group>integration</group>
                <group>integration-sqlserver</group>
            </exclude>
        </groups>
        -->
    </phpunit>