PHP Classes

File: build/phpunit.xml

Recommend this page to a friend!
  Classes of Reinder Reinders   PHP Binary Flags   build/phpunit.xml   Download  
File: build/phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Binary Flags
Manage a group of boolean flags using integers
Author: By
Last change: Add PHP versions to test and keep compatibility with PHP 5.6
Version 1.1

Add getAllFlags static method
Add getAllFlagsMask static method
Date: 3 years ago
Size: 1,111 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="../tests/bootstrap.php" colors="true" backupGlobals="false" backupStaticAttributes="false" verbose="true"> <testsuites> <testsuite name="BinaryFlags Tests"> <directory suffix="Test.php">../tests/</directory> </testsuite> </testsuites> <listeners> <listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener"> <arguments> <array> <element key="slowThreshold"> <integer>500</integer> </element> <element key="reportLength"> <integer>5</integer> </element> </array> </arguments> </listener> </listeners> <filter> <whitelist> <directory>../src</directory> </whitelist> </filter> <logging> <log type="coverage-clover" target="./logs/clover.xml"/> <log type="junit" target="./logs/junit.xml"/> </logging> </phpunit>