Updated phpunit.xml.dist to include the bootstrap file

This commit is contained in:
Joshua Estes 2014-07-02 16:35:40 -04:00
parent f5bb7398d4
commit f1c79cd19a
2 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,7 @@
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
bootstrap = "tests/bootstrap.php"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"

4
tests/bootstrap.php Normal file
View File

@ -0,0 +1,4 @@
<?php
require_once __DIR__ . '/../vendor/autoload.php';
require_once __DIR__ . '/../build/magento/app/Mage.php';