added bootstrap option to phpunit.xml

This commit is contained in:
Fabien Potencier
2010-05-28 08:27:32 +02:00
parent 28bbe6f2de
commit a412dfbb9c
5 changed files with 1 additions and 8 deletions
+1
View File
@@ -9,6 +9,7 @@
processIsolation="true"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="test/Twig/Tests/bootstrap.php"
>
<testsuites>
<testsuite name="Twig Test Suite">
-2
View File
@@ -9,8 +9,6 @@
* file that was distributed with this source code.
*/
require_once dirname(__FILE__).'/bootstrap.php';
class Twig_Tests_AutoloaderTest extends PHPUnit_Framework_TestCase
{
public function testAutoload()
@@ -9,8 +9,6 @@
* file that was distributed with this source code.
*/
require_once dirname(__FILE__).'/../bootstrap.php';
class Twig_Tests_Extension_SandboxTest extends PHPUnit_Framework_TestCase
{
static protected $params, $templates;
-2
View File
@@ -9,8 +9,6 @@
* file that was distributed with this source code.
*/
require_once dirname(__FILE__).'/bootstrap.php';
class Twig_Tests_TokenStreamTest extends PHPUnit_Framework_TestCase
{
static protected $tokens;
-2
View File
@@ -9,8 +9,6 @@
* file that was distributed with this source code.
*/
require_once dirname(__FILE__).'/bootstrap.php';
class Twig_Tests_IntegrationTest extends PHPUnit_Framework_TestCase
{
static protected $fixturesDir;