You are here

DummyTest.php in Contact Block 8

File

tests/src/Kernel/DummyTest.php
View source
<?php

namespace Drupal\Tests\contact_block\Kernel;

use Drupal\KernelTests\KernelTestBase;

/**
 * Dummy Test.
 */
class DummyTest extends KernelTestBase {

  /**
   * Dummy test to run DrupalCI. Only to check if issue queue patches apply.
   */
  public function testDummy() {
    $this
      ->assertTrue(TRUE, 'Assert TRUE.');
    $this
      ->assertFalse(FALSE, 'Assert FALSE.');
  }

}

Classes

Namesort descending Description
DummyTest Dummy Test.