Updates to bootstrap - removing test includes from main bootstrap file

This commit is contained in:
Justin Rainbow 2011-03-15 18:14:01 -07:00
parent 3fba364890
commit bfbba5a5f1
3 changed files with 6 additions and 2 deletions

View File

@ -2,4 +2,4 @@
require 'libs/JsonSchema.php';
require 'libs/JsonSchemaUndefined.php';
require 'tests/BaseTestCase.php';

View File

@ -9,7 +9,7 @@
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="bootstrap.php"
bootstrap="tests/bootstrap.php"
verbose="true"
>
<testsuites>

4
tests/bootstrap.php Normal file
View File

@ -0,0 +1,4 @@
<?php
require dirname(__FILE__) . '/../bootstrap.php';
require 'BaseTestCase.php';