PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Joel Gaujard   CodeIgniter GetText   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CodeIgniter GetText
Load locale texts for CodeIgniter applications
Author: By
Last change:
Date: 6 years ago
Size: 1,376 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" beStrictAboutOutputDuringTests="false" > <php> <ini name="error_reporting" value="-1" /> <const name="PHPUNIT_TESTING" value="TRUE"/> <const name="BASEPATH" value="TRUE"/> </php> <testsuites> <testsuite name="CodeIgniter Gettext Test Suite"> <directory>./tests/</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true" addUncoveredFilesFromWhitelist="true"> <directory>./src</directory> </whitelist> </filter> <logging> <log type="coverage-html" target="./code-coverage" charset="UTF-8" yui="true" highlight="true" lowUpperBound="50" highLowerBound="80" showUncoveredFiles="true" /> <log type="coverage-clover" target="./code-coverage/coverage.xml"/> <log type="coverage-text" target="php://stdout" showUncoveredFiles="false" showOnlySummary="true" /> <log type="junit" target="report/junit.xml" logIncompleteSkipped="true" /> </logging> </phpunit>