SymfonyTestsListener example

/** * The wrapped Symfony test listener. * * @var \Symfony\Bridge\PhpUnit\SymfonyTestsListener */
  private $symfonyListener;

  /** * Constructs the DrupalListener object. */
  public function __construct() {
    $this->symfonyListener = new SymfonyTestsListener();
  }

  /** * {@inheritdoc} */
  public function startTestSuite(TestSuite $suite): void {
    $this->symfonyListener->startTestSuite($suite);
  }

  /** * {@inheritdoc} */
Home | Imprint | This part of the site doesn't use cookies.