Verified Commit 2c468a00 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3264947 by Niklan, quietone, ravi.shankar, longwave, TR, xjm: [Sep 12,...

Issue #3264947 by Niklan, quietone, ravi.shankar, longwave, TR, xjm: [Sep 12, 2022] Add missing docblocks for test methods ::setUp() and ::tearDown()
parent f8b4d7a1
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -11,6 +11,9 @@
 */
class ActionLocalTasksTest extends LocalTaskIntegrationTestBase {

  /**
   * {@inheritdoc}
   */
  protected function setUp(): void {
    $this->directoryList = ['action' => 'core/modules/action'];
    parent::setUp();
+3 −0
Original line number Diff line number Diff line
@@ -52,6 +52,9 @@ class BlockCacheTest extends BrowserTestBase {
   */
  protected $block;

  /**
   * {@inheritdoc}
   */
  protected function setUp(): void {
    parent::setUp();

+3 −0
Original line number Diff line number Diff line
@@ -29,6 +29,9 @@ class BlockHiddenRegionTest extends BrowserTestBase {
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  protected function setUp(): void {
    parent::setUp();

+3 −0
Original line number Diff line number Diff line
@@ -23,6 +23,9 @@ class BlockHookOperationTest extends BrowserTestBase {
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  protected function setUp(): void {
    parent::setUp();

+3 −0
Original line number Diff line number Diff line
@@ -23,6 +23,9 @@ class BlockHtmlTest extends BrowserTestBase {
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  protected function setUp(): void {
    parent::setUp();

Loading