Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / paragraphs / src / Tests / Experimental / ParagraphsExperimentalTestBase.php
diff --git a/web/modules/contrib/paragraphs/src/Tests/Experimental/ParagraphsExperimentalTestBase.php b/web/modules/contrib/paragraphs/src/Tests/Experimental/ParagraphsExperimentalTestBase.php
deleted file mode 100644 (file)
index 752b5de..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-<?php
-
-namespace Drupal\paragraphs\Tests\Experimental;
-
-use Drupal\Core\Entity\Entity\EntityFormDisplay;
-use Drupal\Core\Entity\Entity\EntityViewDisplay;
-use Drupal\field\Entity\FieldConfig;
-use Drupal\field\Entity\FieldStorageConfig;
-use Drupal\field_ui\Tests\FieldUiTestTrait;
-use Drupal\paragraphs\Tests\Classic\ParagraphsTestBase;
-use Drupal\Tests\paragraphs\FunctionalJavascript\ParagraphsTestBaseTrait;
-
-/**
- * Base class for tests.
- */
-abstract class ParagraphsExperimentalTestBase extends ParagraphsTestBase {
-
-  use FieldUiTestTrait, ParagraphsTestBaseTrait;
-
-  /**
-   * Sets the Paragraphs widget add mode.
-   *
-   * @param string $content_type
-   *   Content type name where to set the widget mode.
-   * @param string $paragraphs_field
-   *   Paragraphs field to change the mode.
-   * @param string $mode
-   *   Mode to be set. ('dropdown', 'select' or 'button').
-   */
-  protected function setAddMode($content_type, $paragraphs_field, $mode) {
-    $form_display = EntityFormDisplay::load('node.' . $content_type . '.default')
-      ->setComponent($paragraphs_field, [
-        'type' => 'paragraphs',
-        'settings' => ['add_mode' => $mode]
-      ]);
-    $form_display->save();
-  }
-
-  /**
-   * Removes the default paragraph type.
-   *
-   * @param $content_type
-   *   Content type name that contains the paragraphs field.
-   */
-  protected function removeDefaultParagraphType($content_type) {
-    $this->drupalGet('node/add/' . $content_type);
-    $this->drupalPostForm(NULL, [], 'Remove');
-    $this->assertNoText('No paragraphs added yet.');
-  }
-
-}