PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Tomáš Vojík   PHP Tournament Bracket Generator   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Tournament Bracket Generator
Organize the matches of teams in a tournament
Author: By
Last change: :art: Better structure, documented code an update to PHP 7.4

A lot of changes - mainly restructuring / reformatting the code to be more maintainable.
Date: 2 years ago
Size: 713 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" verbose="true" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> <coverage> <include> <directory>./src</directory> <directory>./build</directory> </include> <report> <clover outputFile="build/coverage.xml"/> <html outputDirectory="build/coverage"/> <php outputFile="build/coverage.serialized"/> </report> </coverage> <testsuites> <testsuite name="Tournament Generator"> <directory>tests</directory> </testsuite> </testsuites> <logging/> </phpunit>