Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / tests / Drupal / KernelTests / Core / Datetime / TimestampSchemaTest.php
1 <?php
2
3 namespace Drupal\KernelTests\Core\Datetime;
4
5 use Drupal\KernelTests\KernelTestBase;
6
7 /**
8  * Tests timestamp schema.
9  *
10  * @group Common
11  */
12 class TimestampSchemaTest extends KernelTestBase {
13
14   /**
15    * {@inheritdoc}
16    */
17   protected static $modules = ['entity_test', 'field', 'field_timestamp_test'];
18
19   /**
20    * Tests if the timestamp field schema is validated.
21    */
22   public function testTimestampSchema() {
23     $this->installConfig(['field_timestamp_test']);
24     // Make at least an assertion.
25     $this->assertTrue(TRUE);
26   }
27
28 }