You are here

ConfigTest.php in Share Everywhere 8

Same filename and directory in other branches
  1. 2.x tests/src/Kernel/ConfigTest.php

File

tests/src/Kernel/ConfigTest.php
View source
<?php

namespace Drupal\Tests\share_everywhere\Kernel;

use Drupal\KernelTests\KernelTestBase;

/**
 * Configuration tests.
 *
 * @group share_everywhere
 */
class ConfigTest extends KernelTestBase {

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'share_everywhere',
  ];

  /**
   * Tests the configuration install.
   *
   * @doesNotPerformAssertions
   */
  public function testConfigInstall() {
    $this
      ->installConfig('share_everywhere');
  }

}

Classes

Namesort descending Description
ConfigTest Configuration tests.