PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Jakub Dubec   PHP GPX Library   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP GPX Library
Parser and generator of GPS Exchange files
Author: By
Last change: Start to configure travis
Date: 6 years ago
Size: 835 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false" bootstrap="vendor/autoload.php" > <php> <ini name="error_reporting" value="-1" /> <ini name="memory_limit" value="-1" /> </php> <testsuites> <testsuite name="phpGPX full test suite"> <directory>tests/</directory> </testsuite> </testsuites> <filter> <whitelist> <directory>./</directory> <exclude> <directory>./vendor</directory> </exclude> </whitelist> </filter> </phpunit>