protected function ContainerAwareTraceableEventDispatcherTest::setUp

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Debug/ContainerAwareTraceableEventDispatcherTest.php, line 19

Class

ContainerAwareTraceableEventDispatcherTest

Namespace

Symfony\Component\HttpKernel\Tests\Debug

Code

protected function setUp() {
  if (!class_exists('Symfony\\Component\\DependencyInjection\\Container')) {
    $this
      ->markTestSkipped('The "DependencyInjection" component is not available');
  }
  if (!class_exists('Symfony\\Component\\HttpKernel\\HttpKernel')) {
    $this
      ->markTestSkipped('The "HttpKernel" component is not available');
  }
}