PHP Classes

File: phpunit.xml.dist

Recommend this page to a friend!
  Classes of Massimiliano Arione   PHP Chess Game Bundle   phpunit.xml.dist   Download  
File: phpunit.xml.dist
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Chess Game Bundle
Manage a chess game in a Symfony application
Author: By
Last change:
Date: 2 years ago
Size: 759 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" beStrictAboutTestsThatDoNotTestAnything="true" bootstrap="vendor/autoload.php" > <testsuites> <testsuite name="ChessBundle test suite"> <directory suffix="Test.php">tests</directory> </testsuite> </testsuites> <coverage> <include> <directory>src</directory> </include> </coverage> <!-- see https://www.tomasvotruba.cz/blog/2019/03/28/how-to-mock-final-classes-in-phpunit/ --> <extensions> <extension class="PChess\ChessBundle\Tests\BypassFinalHook"/> </extensions> </phpunit>