You are here

public function DummyTest::testDummy in Contact Block 8

Dummy test to run DrupalCI. Only to check if issue queue patches apply.

File

tests/src/Kernel/DummyTest.php, line 15

Class

DummyTest
Dummy Test.

Namespace

Drupal\Tests\contact_block\Kernel

Code

public function testDummy() {
  $this
    ->assertTrue(TRUE, 'Assert TRUE.');
  $this
    ->assertFalse(FALSE, 'Assert FALSE.');
}