PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Classes of Eduardo Luz   PHP Action Class   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Action Class
Create objects that execute actions dynamically
Author: By
Last change:
Date: 5 years ago
Size: 1,005 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.3/phpunit.xsd" forceCoversAnnotation="false" beStrictAboutCoversAnnotation="true" beStrictAboutOutputDuringTests="true" beStrictAboutTodoAnnotatedTests="true" verbose="true" bootstrap="bootstrap_test.php" > <testsuites> <testsuite name="unit"> <directory>./tests/unit</directory> </testsuite> <testsuite name="integration"> <directory>./tests/integration</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true" addUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./src</directory> <exclude> <directory suffix=".php">./vendor/</directory> </exclude> </whitelist> </filter> </phpunit>