Skip to content
Snippets Groups Projects
Select Git revision
  • c740dc5a898d32a589e6edea91c61cdf4c6ddc37
  • main default protected
  • register-logging-channel
  • expr-lang
  • ci-82
  • attr-events
  • locale-wip
  • custom-routes
  • v0.1.85
  • v0.1.84
  • v0.1.83
  • v0.1.82
  • v0.1.81
  • v0.1.80
  • v0.1.79
  • v0.1.78
  • v0.1.77
  • v0.1.76
  • v0.1.75
  • v0.1.74
  • v0.1.73
  • v0.1.72
  • v0.1.71
  • v0.1.70
  • v0.1.69
  • v0.1.68
  • v0.1.67
  • v0.1.65
28 results

phpunit.xml.dist

Blame
  • phpunit.xml.dist 1011 B
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
    <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="tests/bootstrap.php">
      <coverage>
        <include>
          <directory>src</directory>
          <directory>tests</directory>
        </include>
      </coverage>
      <php>
        <ini name="error_reporting" value="-1"/>
        <server name="APP_ENV" value="test" force="true"/>
        <server name="SHELL_VERBOSITY" value="-1"/>
        <server name="SYMFONY_DEPRECATIONS_HELPER" value='max[direct]=0&amp;quiet[]=indirect'/>
        <server name="KERNEL_CLASS" value="Dbp\Relay\CoreBundle\Tests\Kernel"/>
      </php>
      <testsuites>
        <testsuite name="Project Test Suite">
          <directory>tests</directory>
        </testsuite>
      </testsuites>
      <listeners>
        <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
      </listeners>
    </phpunit>