scratch – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
115 office 1 <?xml version="1.0" encoding="UTF-8"?>
2  
3 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
5 backupGlobals="false"
6 colors="true"
7 bootstrap="../../vendor/autoload.php"
8 >
9 <php>
10 <ini name="error_reporting" value="-1" />
11 </php>
12  
13 <logging>
14 <log type="coverage-clover" target="../../build/logs/clover.xml"/>
15 </logging>
16  
17 <testsuites>
18 <testsuite name="Doctrine Cache Test Suite">
19 <directory>../Doctrine/</directory>
20 </testsuite>
21 </testsuites>
22  
23 <filter>
24 <whitelist>
25 <directory>../../lib/Doctrine/</directory>
26 </whitelist>
27 </filter>
28  
29 <groups>
30 <exclude>
31 <group>performance</group>
32 </exclude>
33 </groups>
34 </phpunit>