PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Thierry Feuzeu   Jaxon   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Jaxon
Call PHP classes from JavaScript using AJAX
Author: By
Last change: Updated the tests.
Merge commit 'ad2bbee761f90bd5be9ed7cafe1099856dc7827b' as 'jaxon-core'
Date: 4 months ago
Size: 714 bytes
 

Contents

Class file image Download
<?xml version="1.0"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> <listeners> <listener class="Jaxon\Tests\JaxonTestListener" /> </listeners> <coverage processUncoveredFiles="true"> <include> <directory suffix=".php">src</directory> </include> <report> <clover outputFile="build/logs/clover.xml"/> <html outputDirectory="build/logs/html" lowUpperBound="35" highLowerBound="70"/> </report> </coverage> <testsuites> <testsuite name="Jaxon Core"> <directory>tests</directory> </testsuite> </testsuites> <logging/> </phpunit>