Add bootstrap and set error reporting to E_STRICT
This commit is contained in:
parent
9e1c049c38
commit
b14641d2f4
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<phpunit
|
<phpunit
|
||||||
bootstrap="vendor/autoload.php"
|
bootstrap="test/bootstrap.php"
|
||||||
checkForUnintentionallyCoveredCode="true"
|
checkForUnintentionallyCoveredCode="true"
|
||||||
colors="true"
|
colors="true"
|
||||||
convertErrorsToExceptions="true"
|
convertErrorsToExceptions="true"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
error_reporting(E_STRICT);
|
||||||
|
|
||||||
|
require_once __DIR__ . "/../vendor/autoload.php";
|
||||||
Loading…
Reference in New Issue