PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Javier Garrido   PHP State Machine Implementation   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP State Machine Implementation
Define a state machine and process trigger events
Author: By
Last change:
Date: 2 years ago
Size: 886 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit backupGlobals="true" beStrictAboutTestsThatDoNotTestAnything="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="true" stopOnError="false" stopOnFailure="false"> <testsuites> <testsuite name="Feature Tests"> <directory suffix="Test.php">./tests</directory> </testsuite> </testsuites> <filter> <whitelist> <directory suffix=".php">src/</directory> </whitelist> </filter> <logging> <log type="coverage-html" target="coverage-report" lowUpperBound="35" highLowerBound="70" /> <log type="coverage-clover" target="coverage-report/coverage.xml"/> </logging> </phpunit>