added bootstrap option to phpunit.xml
authorFabien Potencier <fabien.potencier@gmail.com>
Fri, 28 May 2010 06:27:32 +0000 (08:27 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Fri, 28 May 2010 06:27:32 +0000 (08:27 +0200)
phpunit.xml
test/Twig/Tests/AutoloaderTest.php
test/Twig/Tests/Extension/SandboxTest.php
test/Twig/Tests/TokenStreamTest.php
test/Twig/Tests/integrationTest.php

index d01af55..80ccf2b 100644 (file)
@@ -9,6 +9,7 @@
          processIsolation="true"
          stopOnFailure="false"
          syntaxCheck="false"
+         bootstrap="test/Twig/Tests/bootstrap.php"
 >
   <testsuites>
     <testsuite name="Twig Test Suite">
index cf696c9..e572284 100644 (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()
index 25f4d01..eced784 100644 (file)
@@ -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;
index 11a1f2e..341773c 100644 (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;
index c193575..8adbac7 100644 (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;