You are here

class PardotFormMappingControllerTest in Pardot Integration 2.x

Provides automated tests for the pardot module.

Hierarchy

Expanded class hierarchy of PardotFormMappingControllerTest

File

tests/Controller/PardotFormMappingControllerTest.php, line 12

Namespace

Drupal\pardot\Tests
View source
class PardotFormMappingControllerTest extends WebTestBase {

  /**
   * Drupal\Core\Entity\EntityManagerInterface definition.
   *
   * @var \Drupal\Core\Entity\EntityManagerInterface
   */
  protected $entityManager;

  /**
   * Drupal\Core\Entity\EntityTypeManagerInterface definition.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * {@inheritdoc}
   */
  public static function getInfo() {
    return [
      'name' => "pardot PardotFormMappingController's controller functionality",
      'description' => 'Test Unit for module pardot and controller PardotFormMappingController.',
      'group' => 'Other',
    ];
  }

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

  /**
   * Tests pardot functionality.
   */
  public function testPardotFormMappingController() {

    // Check that the basic functions of module pardot.
    $this
      ->assertEquals(TRUE, TRUE, 'Test Unit Generated via Drupal Console.');
  }

}

Members