You are here

public function MockTest::testSmoke in Realistic Dummy Content 8.2

Same name and namespace in other branches
  1. 7.2 api/src/test/Framework/MockTest.php \Drupal\realistic_dummy_content_api\Framework\MockTest::testSmoke()

Smoke test.

File

api/src/test/Framework/MockTest.php, line 19

Class

MockTest
Tests for \Drupal\realistic_dummy_content_api\Framework\Mock.

Namespace

Drupal\realistic_dummy_content_api\Framework

Code

public function testSmoke() {

  // @codingStandardsIgnoreStart
  // Ignoring coding standards for this test because we cannot use a
  // "use" statement after the first namespace, would have to be after
  // the second namespace.
  $this
    ->assertTrue(class_exists(\Drupal\realistic_dummy_content_api\Framework\Mock::class));

  // @codingStandardsIgnoreEnd
}