PHP Classes

File: phpunit.xml

Recommend this page to a friend!
  Packages of Gianfrancesco Aurecchia   OPC UA Client   phpunit.xml   Download  
File: phpunit.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: OPC UA Client
Control devices that support the OPC UA protocol
Author: By
Last change:
Date: 17 days ago
Size: 833 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="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" > <php> <ini name="memory_limit" value="512M"/> </php> <testsuites> <testsuite name="Test Suite"> <directory suffix="Test.php">./tests</directory> </testsuite> </testsuites> <source> <include> <directory>src</directory> </include> </source> <coverage> <report> <html outputDirectory="coverage/html"/> <clover outputFile="coverage/clover.xml"/> <text outputFile="coverage/coverage.txt" showOnlySummary="true"/> </report> </coverage> </phpunit>