<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.2/phpunit.xsd"
         backupGlobals="false"
         verbose="true">
  <testsuites>
    <testsuite name="all">
      <directory suffix="Test.php">tests</directory>
    </testsuite>
  </testsuites>
  
  <logging>
    <log type="coverage-html" target="build/coverage"/>
  </logging>
  
  <php>
    <ini name="error_reporting" value="E_ALL &amp; ~E_STRICT" />
    <ini name="precision" value="14"/>
    <ini name="serialize_precision" value="14"/>
    <const name="PHPUNIT_TESTSUITE" value="true"/>
  </php>
</phpunit>
