Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit fb22353

Browse filesBrowse files
fabpottidal
authored andcommitted
simplified unit tests
1 parent b5b1d6d commit fb22353
Copy full SHA for fb22353

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

64 files changed

+1
-125
lines changed

‎phpunit.xml

Copy file name to clipboardExpand all lines: phpunit.xml
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
processIsolation="false"
1010
stopOnFailure="false"
1111
syntaxCheck="false"
12+
bootstrap="tests/Symfony/Tests/bootstrap.php"
1213
>
1314
<testsuites>
1415
<testsuite name="Symfony Test Suite">

‎tests/Symfony/Tests/Components/Console/ApplicationTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/ApplicationTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Application;
1614
use Symfony\Components\Console\Input\ArrayInput;
1715
use Symfony\Components\Console\Output\Output;

‎tests/Symfony/Tests/Components/Console/Command/CommandTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Command/CommandTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Command;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Command\Command;
1614
use Symfony\Components\Console\Application;
1715
use Symfony\Components\Console\Input\InputDefinition;

‎tests/Symfony/Tests/Components/Console/Command/HelpCommandTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Command/HelpCommandTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Command;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Tester\CommandTester;
1614
use Symfony\Components\Console\Command\HelpCommand;
1715
use Symfony\Components\Console\Command\ListCommand;

‎tests/Symfony/Tests/Components/Console/Command/ListCommandTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Command/ListCommandTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Command;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Tester\CommandTester;
1614
use Symfony\Components\Console\Application;
1715

‎tests/Symfony/Tests/Components/Console/Helper/FormatterHelperTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Helper/FormatterHelperTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Formatter;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Helper\FormatterHelper;
1614

1715
class FormatterHelperTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/Console/Input/ArgvInputTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Input/ArgvInputTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Input;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Input\ArgvInput;
1614
use Symfony\Components\Console\Input\InputDefinition;
1715
use Symfony\Components\Console\Input\InputArgument;

‎tests/Symfony/Tests/Components/Console/Input/ArrayInputTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Input/ArrayInputTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Input;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Input\ArrayInput;
1614
use Symfony\Components\Console\Input\InputDefinition;
1715
use Symfony\Components\Console\Input\InputArgument;

‎tests/Symfony/Tests/Components/Console/Input/InputArgumentTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Input/InputArgumentTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Input;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Input\InputArgument;
1614
use Symfony\Components\Console\Exception;
1715

‎tests/Symfony/Tests/Components/Console/Input/InputDefinitionTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Input/InputDefinitionTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Input;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Input\InputDefinition;
1614
use Symfony\Components\Console\Input\InputArgument;
1715
use Symfony\Components\Console\Input\InputOption;

‎tests/Symfony/Tests/Components/Console/Input/InputOptionTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Input/InputOptionTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Input;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Input\InputOption;
1614
use Symfony\Components\Console\Exception;
1715

‎tests/Symfony/Tests/Components/Console/Input/InputTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Input/InputTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Input;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Input\ArrayInput;
1614
use Symfony\Components\Console\Input\InputDefinition;
1715
use Symfony\Components\Console\Input\InputArgument;

‎tests/Symfony/Tests/Components/Console/Input/StringInputTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Input/StringInputTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Input;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Input\StringInput;
1614

1715
class StringInputTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/Console/Output/ConsoleOutputTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Output/ConsoleOutputTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Output;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Output\ConsoleOutput;
1614
use Symfony\Components\Console\Output\Output;
1715

‎tests/Symfony/Tests/Components/Console/Output/NullOutputTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Output/NullOutputTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Output;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Output\NullOutput;
1614

1715
class NullOutputTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/Console/Output/OutputTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Output/OutputTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Output;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Output\Output;
1614

1715
class OutputTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/Console/Output/StreamOutputTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Output/StreamOutputTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Output;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Output\Output;
1614
use Symfony\Components\Console\Output\StreamOutput;
1715

‎tests/Symfony/Tests/Components/Console/Tester/ApplicationTesterTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Tester/ApplicationTesterTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Tester;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Application;
1614
use Symfony\Components\Console\Output\Output;
1715
use Symfony\Components\Console\Tester\ApplicationTester;

‎tests/Symfony/Tests/Components/Console/Tester/CommandTesterTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/Console/Tester/CommandTesterTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\Console\Tester;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\Console\Command\Command;
1614
use Symfony\Components\Console\Output\Output;
1715
use Symfony\Components\Console\Tester\CommandTester;

‎tests/Symfony/Tests/Components/DependencyInjection/BuilderConfigurationTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/BuilderConfigurationTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\BuilderConfiguration;
1715
use Symfony\Components\DependencyInjection\Definition;

‎tests/Symfony/Tests/Components/DependencyInjection/BuilderTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/BuilderTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\BuilderConfiguration;
1715
use Symfony\Components\DependencyInjection\Definition;

‎tests/Symfony/Tests/Components/DependencyInjection/ContainerTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/ContainerTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Container;
1614

1715
class ContainerTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/DependencyInjection/CrossCheckTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/CrossCheckTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614

1715
class CrossCheckTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/DependencyInjection/DefinitionTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/DefinitionTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Definition;
1614

1715
class DefinitionTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/DependencyInjection/Dumper/DumperTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Dumper/DumperTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Dumper;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\Dumper\Dumper;
1715

‎tests/Symfony/Tests/Components/DependencyInjection/Dumper/GraphvizDumperTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Dumper/GraphvizDumperTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Dumper;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\Dumper\GraphvizDumper;
1715

‎tests/Symfony/Tests/Components/DependencyInjection/Dumper/PhpDumperTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Dumper/PhpDumperTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Dumper;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\Dumper\PhpDumper;
1715

‎tests/Symfony/Tests/Components/DependencyInjection/Dumper/XmlDumperTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Dumper/XmlDumperTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Dumper;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\Dumper\XmlDumper;
1715

‎tests/Symfony/Tests/Components/DependencyInjection/Dumper/YamlDumperTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Dumper/YamlDumperTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Dumper;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\Dumper\YamlDumper;
1715

‎tests/Symfony/Tests/Components/DependencyInjection/FileResourceTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/FileResourceTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\FileResource;
1614

1715
class FileResourceTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/DependencyInjection/Loader/FileLoaderTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Loader/FileLoaderTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Loader;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\Loader\FileLoader;
1715

‎tests/Symfony/Tests/Components/DependencyInjection/Loader/IniFileLoaderTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Loader/IniFileLoaderTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Loader;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\Loader\IniFileLoader;
1715

‎tests/Symfony/Tests/Components/DependencyInjection/Loader/LoaderExtensionTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Loader/LoaderExtensionTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Loader;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
require_once __DIR__.'/../../../../../fixtures/Symfony/Components/DependencyInjection/includes/ProjectExtension.php';
1614

1715
class LoaderExtensionTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/DependencyInjection/Loader/LoaderTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Loader/LoaderTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Loader;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
require_once __DIR__.'/../../../../../fixtures/Symfony/Components/DependencyInjection/includes/ProjectExtension.php';
1614

1715
use Symfony\Components\DependencyInjection\Loader\Loader;

‎tests/Symfony/Tests/Components/DependencyInjection/Loader/XmlFileLoaderTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Loader/XmlFileLoaderTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Loader;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\Reference;
1715
use Symfony\Components\DependencyInjection\Definition;

‎tests/Symfony/Tests/Components/DependencyInjection/Loader/YamlFileLoaderTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/Loader/YamlFileLoaderTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection\Loader;
1212

13-
require_once __DIR__.'/../../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Builder;
1614
use Symfony\Components\DependencyInjection\Reference;
1715
use Symfony\Components\DependencyInjection\Definition;

‎tests/Symfony/Tests/Components/DependencyInjection/ParameterTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/ParameterTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Parameter;
1614

1715
class ParameterTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/DependencyInjection/ReferenceTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/DependencyInjection/ReferenceTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\DependencyInjection;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\DependencyInjection\Reference;
1614

1715
class ReferenceTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/EventDispatcher/EventDispatcherTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/EventDispatcher/EventDispatcherTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\EventDispatcher;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\EventDispatcher\Event;
1614
use Symfony\Components\EventDispatcher\EventDispatcher;
1715

‎tests/Symfony/Tests/Components/EventDispatcher/EventTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/EventDispatcher/EventTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace Symfony\Tests\Components\EventDispatcher;
1212

13-
require_once __DIR__.'/../../bootstrap.php';
14-
1513
use Symfony\Components\EventDispatcher\Event;
1614

1715
class EventTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/OutputEscaper/ArrayDecoratorTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/OutputEscaper/ArrayDecoratorTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
namespace Symfony\Tests\Components\OutputEscaper;
1313

14-
require_once __DIR__.'/../../bootstrap.php';
15-
1614
use Symfony\Components\OutputEscaper\Escaper;
1715

1816
class ArrayDecoratorTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/OutputEscaper/EscaperTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/OutputEscaper/EscaperTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
namespace Symfony\Tests\Components\OutputEscaper;
1313

14-
require_once __DIR__.'/../../bootstrap.php';
15-
1614
use Symfony\Components\OutputEscaper\Escaper;
1715
use Symfony\Components\OutputEscaper\SafeDecorator;
1816
use Symfony\Components\OutputEscaper\IteratorDecorator;

‎tests/Symfony/Tests/Components/OutputEscaper/ObjectDecoratorTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/OutputEscaper/ObjectDecoratorTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
namespace Symfony\Tests\Components\OutputEscaper;
1313

14-
require_once __DIR__.'/../../bootstrap.php';
15-
1614
use Symfony\Components\OutputEscaper\Escaper;
1715

1816
class ObjectDecoratorTest extends \PHPUnit_Framework_TestCase

‎tests/Symfony/Tests/Components/OutputEscaper/SafeDecoratorTest.php

Copy file name to clipboardExpand all lines: tests/Symfony/Tests/Components/OutputEscaper/SafeDecoratorTest.php
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
namespace Symfony\Tests\Components\OutputEscaper;
1313

14-
require_once __DIR__.'/../../bootstrap.php';
15-
1614
use Symfony\Components\OutputEscaper\SafeDecorator;
1715

1816
class SafeDecoratorTest extends \PHPUnit_Framework_TestCase

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.