You are here

public function TimestampSchemaTest::testTimestampSchema in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/Datetime/TimestampSchemaTest.php \Drupal\KernelTests\Core\Datetime\TimestampSchemaTest::testTimestampSchema()

Tests if the timestamp field schema is validated.

File

core/tests/Drupal/KernelTests/Core/Datetime/TimestampSchemaTest.php, line 35

Class

TimestampSchemaTest
Tests timestamp schema.

Namespace

Drupal\KernelTests\Core\Datetime

Code

public function testTimestampSchema() {
  $this
    ->installConfig([
    'field_timestamp_test',
  ]);

  // Make at least an assertion.
  $this
    ->assertTrue(TRUE);
}