ConfigTest.php in Share Everywhere 8
Same filename and directory in other branches
Namespace
Drupal\Tests\share_everywhere\KernelFile
tests/src/Kernel/ConfigTest.phpView 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
Name | Description |
---|---|
ConfigTest | Configuration tests. |