Add bootstrap and set error reporting to E_STRICT

This commit is contained in:
PJ Dietz 2015-04-13 19:17:08 -04:00
parent 9e1c049c38
commit b14641d2f4
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="vendor/autoload.php"
bootstrap="test/bootstrap.php"
checkForUnintentionallyCoveredCode="true"
colors="true"
convertErrorsToExceptions="true"

5
test/bootstrap.php Normal file
View File

@ -0,0 +1,5 @@
<?php
error_reporting(E_STRICT);
require_once __DIR__ . "/../vendor/autoload.php";