You are here

class MockTest 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

Tests for \Drupal\realistic_dummy_content_api\Framework\Mock.

@group realistic_dummy_content

Hierarchy

  • class \Drupal\realistic_dummy_content_api\Framework\MockTest extends \Drupal\realistic_dummy_content_api\Framework\PHPUnit_Framework_TestCase

Expanded class hierarchy of MockTest

File

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

Namespace

Drupal\realistic_dummy_content_api\Framework
View source
class MockTest extends \PHPUnit_Framework_TestCase {

  /**
   * Smoke test.
   */
  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
  }

}

Members