You are here

public function SchemaTest::testSchema in Conflict 8.2

Tests that schema is present.

File

tests/src/Kernel/SchemaTest.php, line 22

Class

SchemaTest
Tests the Conflict schema.

Namespace

Drupal\Tests\conflict\Kernel

Code

public function testSchema() {
  $this
    ->config('conflict.settings')
    ->set('resolution_type.default.default', 'dialog')
    ->set('resolution_type.node.default', 'dialog')
    ->set('resolution_type.node.article', 'dialog')
    ->save();

  // This is necessary to pass the test, even though no assertions are
  // necessary to check for presence of schema.
  $this
    ->assertTrue(TRUE);
}