PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Manolo Salsas   PHP Currency Converter API   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Currency Converter API
Provides an API to return currency exchange rates
Author: By
Last change:
Date: 4 years ago
Size: 1,270 bytes
 

Contents

Class file image Download
<?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="http://schema.phpunit.de/6.5/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="config/bootstrap.php" > <php> <ini name="error_reporting" value="-1" /> <server name="APP_ENV" value="test" force="true" /> <server name="SHELL_VERBOSITY" value="-1" /> <server name="SYMFONY_PHPUNIT_REMOVE" value="" /> <server name="SYMFONY_PHPUNIT_VERSION" value="6.5" /> <server name="KERNEL_CLASS" value="App\Kernel" /> <!-- the value is the Doctrine connection string in DSN format --> <env name="DATABASE_URL" value="sqlite:///%kernel.project_dir%/var/data/currency_test.sqlite"/> </php> <testsuites> <testsuite name="Project Test Suite"> <directory>tests</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>src</directory> </whitelist> </filter> <listeners> <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" /> </listeners> </phpunit>