@@ -9,6 +9,7 @@
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
+ bootstrap="tests/Symfony/Tests/bootstrap.php"
>
<testsuites>
<testsuite name="Symfony Test Suite">
@@ -10,8 +10,6 @@
namespace Symfony\Tests\Components\Console;
-require_once __DIR__.'/../../bootstrap.php';
-
use Symfony\Components\Console\Application;
use Symfony\Components\Console\Input\ArrayInput;
use Symfony\Components\Console\Output\Output;
namespace Symfony\Tests\Components\Console\Command;
-require_once __DIR__.'/../../../bootstrap.php';
use Symfony\Components\Console\Command\Command;
use Symfony\Components\Console\Input\InputDefinition;
use Symfony\Components\Console\Tester\CommandTester;
use Symfony\Components\Console\Command\HelpCommand;
use Symfony\Components\Console\Command\ListCommand;
namespace Symfony\Tests\Components\Console\Formatter;
use Symfony\Components\Console\Helper\FormatterHelper;
class FormatterHelperTest extends \PHPUnit_Framework_TestCase
namespace Symfony\Tests\Components\Console\Input;
use Symfony\Components\Console\Input\ArgvInput;
use Symfony\Components\Console\Input\InputArgument;
use Symfony\Components\Console\Exception;
use Symfony\Components\Console\Input\InputOption;
use Symfony\Components\Console\Input\StringInput;
class StringInputTest extends \PHPUnit_Framework_TestCase
namespace Symfony\Tests\Components\Console\Output;
use Symfony\Components\Console\Output\ConsoleOutput;
use Symfony\Components\Console\Output\NullOutput;
class NullOutputTest extends \PHPUnit_Framework_TestCase
class OutputTest extends \PHPUnit_Framework_TestCase
use Symfony\Components\Console\Output\StreamOutput;
namespace Symfony\Tests\Components\Console\Tester;
use Symfony\Components\Console\Tester\ApplicationTester;
namespace Symfony\Tests\Components\DependencyInjection;
use Symfony\Components\DependencyInjection\Builder;
use Symfony\Components\DependencyInjection\BuilderConfiguration;
use Symfony\Components\DependencyInjection\Definition;
use Symfony\Components\DependencyInjection\Container;
class ContainerTest extends \PHPUnit_Framework_TestCase
class CrossCheckTest extends \PHPUnit_Framework_TestCase
class DefinitionTest extends \PHPUnit_Framework_TestCase
namespace Symfony\Tests\Components\DependencyInjection\Dumper;
use Symfony\Components\DependencyInjection\Dumper\Dumper;
use Symfony\Components\DependencyInjection\Dumper\GraphvizDumper;
use Symfony\Components\DependencyInjection\Dumper\PhpDumper;
use Symfony\Components\DependencyInjection\Dumper\XmlDumper;
use Symfony\Components\DependencyInjection\Dumper\YamlDumper;
use Symfony\Components\DependencyInjection\FileResource;
class FileResourceTest extends \PHPUnit_Framework_TestCase
namespace Symfony\Tests\Components\DependencyInjection\Loader;
use Symfony\Components\DependencyInjection\Loader\FileLoader;
use Symfony\Components\DependencyInjection\Loader\IniFileLoader;
require_once __DIR__.'/../../../../../fixtures/Symfony/Components/DependencyInjection/includes/ProjectExtension.php';
class LoaderExtensionTest extends \PHPUnit_Framework_TestCase
use Symfony\Components\DependencyInjection\Loader\Loader;
use Symfony\Components\DependencyInjection\Reference;
use Symfony\Components\DependencyInjection\Parameter;
class ParameterTest extends \PHPUnit_Framework_TestCase
class ReferenceTest extends \PHPUnit_Framework_TestCase
namespace Symfony\Tests\Components\EventDispatcher;
use Symfony\Components\EventDispatcher\Event;
use Symfony\Components\EventDispatcher\EventDispatcher;
class EventTest extends \PHPUnit_Framework_TestCase
@@ -11,8 +11,6 @@
namespace Symfony\Tests\Components\OutputEscaper;
use Symfony\Components\OutputEscaper\Escaper;
class ArrayDecoratorTest extends \PHPUnit_Framework_TestCase
use Symfony\Components\OutputEscaper\SafeDecorator;
use Symfony\Components\OutputEscaper\IteratorDecorator;
class ObjectDecoratorTest extends \PHPUnit_Framework_TestCase
class SafeDecoratorTest extends \PHPUnit_Framework_TestCase
namespace Symfony\Tests\Components\RequestHandler;
use Symfony\Components\RequestHandler\Request;
class RequestTest extends \PHPUnit_Framework_TestCase
namespace Symfony\Tests\Components\Templating;
require_once __DIR__.'/../../../../lib/SymfonyTests/Components/Templating/SimpleHelper.php';
use Symfony\Components\Templating\Engine;
namespace Symfony\Tests\Components\Templating\Helper;
use Symfony\Components\Templating\Helper\AssetsHelper;
class AssetsHelperTest extends \PHPUnit_Framework_TestCase
use Symfony\Components\Templating\Helper\Helper;
class HelperTest extends \PHPUnit_Framework_TestCase
use Symfony\Components\Templating\Helper\JavascriptsHelper;
use Symfony\Components\Templating\Loader\FilesystemLoader;
use Symfony\Components\Templating\Helper\SlotsHelper;
class SlotsHelperTest extends \PHPUnit_Framework_TestCase
use Symfony\Components\Templating\Helper\StylesheetsHelper;
namespace Symfony\Tests\Components\Templating\Loader;
require_once __DIR__.'/../../../../../lib/SymfonyTests/Components/Templating/ProjectTemplateDebugger.php';
use Symfony\Components\Templating\Loader\Loader;
use Symfony\Components\Templating\Loader\ChainLoader;
namespace Symfony\Tests\Components\Templating\Renderer;
use Symfony\Components\Templating\Renderer\PhpRenderer;
use Symfony\Components\Templating\Storage\Storage;
use Symfony\Components\Templating\Storage\StringStorage;
require_once __DIR__.'/../../../../../lib/SymfonyTests/Components/Templating/SimpleHelper.php';
namespace Symfony\Tests\Components\Templating\Storage;
use Symfony\Components\Templating\Storage\FileStorage;
use Symfony\Components\Yaml\Yaml;
use Symfony\Components\Yaml\Parser;
use Symfony\Components\Yaml\Dumper;
use Symfony\Components\Yaml\Inline;
use Symfony\Components\Yaml\ParserException;
@@ -10,7 +10,6 @@
*/
require_once __DIR__.'/../../../src/Symfony/Foundation/UniversalClassLoader.php';
-require_once 'PHPUnit/Framework.php';
$loader = new Symfony\Foundation\UniversalClassLoader();
$loader->registerNamespace('Symfony', __DIR__.'/../../../src');