PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Reinder Reinders   PHP Binary Flags   phpunit.xml   Download  
File: 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: Prepare v2.1.0 release (#15)

* Update testing tools

* Update workflow for parallel tests

* Add named enum flags and split tests

* Add enum mask conversion guide

* Document enum conversion example

* Run pint

* Add phpstan templates for enum flags and mask typing

* Add additional coverage tests for enum and mask edge cases

* Fix docblock and reducer order

* Fix enum flag docblock and reducer

* Correct flag traits docblocks
Date: 1 month ago
Size: 520 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" backupGlobals="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> <testsuites> <testsuite name="BinaryFlags Tests"> <directory suffix="Test.php">./tests/</directory> </testsuite> </testsuites> <source> <include> <directory>./src</directory> </include> </source> </phpunit>