protected function GroupToGroupContentRelationshipTest::installTestConfiguration in Group 2.0.x
Same name and namespace in other branches
- 8 tests/src/Kernel/Views/GroupToGroupContentRelationshipTest.php \Drupal\Tests\group\Kernel\Views\GroupToGroupContentRelationshipTest::installTestConfiguration()
Installs the required configuration and schemas for this test.
1 call to GroupToGroupContentRelationshipTest::installTestConfiguration()
- GroupToGroupContentRelationshipTest::setUp in tests/
src/ Kernel/ Views/ GroupToGroupContentRelationshipTest.php
File
- tests/
src/ Kernel/ Views/ GroupToGroupContentRelationshipTest.php, line 70
Class
- GroupToGroupContentRelationshipTest
- Tests the group_to_group_content relationship handler.
Namespace
Drupal\Tests\group\Kernel\ViewsCode
protected function installTestConfiguration() {
$this
->installEntitySchema('user');
$this
->installEntitySchema('group');
$this
->installEntitySchema('group_type');
$this
->installEntitySchema('group_content');
$this
->installEntitySchema('group_content_type');
$this
->installConfig([
'group',
'field',
'group_test_config',
]);
}