Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • bump/cas-lib/3-0
  • unit_tests
  • ecphp-cas-lib/bump/3-0-0
  • laravel_10
  • docs/minor-readme-update
  • ci/add-ext-fileinfo
  • 1.1.0
  • 1.0.0
  • 0.0.2
  • 0.0.1
11 results

phpunit.xml

Blame
  • Bogdan Bocioaca's avatar
    Bogdan BOCIOACA authored and Pol Dellaiera committed
    41a57754
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    phpunit.xml 1.04 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
             bootstrap="tests/bootstrap.php"
             colors="true"
    >
      <testsuites>
    
        <testsuite name="LaravelCas">
          <directory suffix="Test.php">./tests</directory>
        </testsuite>
    
      </testsuites>
      <coverage/>
      <php>
        <server name="APP_ENV" value="testing"/>
        <server name="APP_KEY" value="O2lsv1gg9Guol7e4BlrxbCmM3aY5jzJt"/>
        <server name="BCRYPT_ROUNDS" value="4"/>
        <server name="CACHE_DRIVER" value="array"/>
        <!-- <server name="DB_CONNECTION" value="sqlite"/> -->
        <!-- <server name="DB_DATABASE" value=":memory:"/> -->
        <server name="MAIL_MAILER" value="array"/>
        <server name="QUEUE_CONNECTION" value="sync"/>
        <server name="SESSION_DRIVER" value="array"/>
        <server name="TELESCOPE_ENABLED" value="false"/>
      </php>
      <source>
        <include>
          <directory suffix=".php">./app</directory>
        </include>
      </source>
    </phpunit>