source: trunk/client/inc/hpdf5/spipu/html2pdf/phpunit.xml@ 347

Last change on this file since 347 was 347, checked in by roby, 3 years ago

Aggiornamento per compatibilità con php7.4

File size: 974 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
4 bootstrap="./vendor/autoload.php" colors="true" backupGlobals="false"
5 backupStaticAttributes="false"
6 verbose="true"
7>
8 <testsuites>
9 <testsuite name="unit">
10 <directory>src/Tests</directory>
11 </testsuite>
12 </testsuites>
13 <filter>
14 <whitelist addUncoveredFilesFromWhiteList="true">
15 <directory suffix=".php">src</directory>
16 <exclude>
17 <directory>src/Tests</directory>
18 <directory>src/config</directory>
19 </exclude>
20 </whitelist>
21 </filter>
22 <!-- logging>
23 <log type="coverage-html" target="build/logs/coverage" charset="UTF-8" yui="true" highlight="true"/>
24 <log type="coverage-clover" target="build/logs/clover.xml"/>
25 </logging -->
26</phpunit>
Note: See TracBrowser for help on using the repository browser.