DummyTest.php in Contact Block 8
Namespace
Drupal\Tests\contact_block\KernelFile
tests/src/Kernel/DummyTest.phpView 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.');
}
}