You are here

protected function GroupToGroupContentRelationshipTest::createGroup in Group 2.0.x

Same name and namespace in other branches
  1. 8 tests/src/Kernel/Views/GroupToGroupContentRelationshipTest.php \Drupal\Tests\group\Kernel\Views\GroupToGroupContentRelationshipTest::createGroup()

Creates a group.

Parameters

array $values: (optional) The values used to create the entity.

Return value

\Drupal\group\Entity\Group The created group entity.

3 calls to GroupToGroupContentRelationshipTest::createGroup()
GroupToGroupContentRelationshipTest::testAddedMemberIsListed in tests/src/Kernel/Views/GroupToGroupContentRelationshipTest.php
Tests that an extra group member is returned by the view.
GroupToGroupContentRelationshipTest::testGroupOwnerIsListed in tests/src/Kernel/Views/GroupToGroupContentRelationshipTest.php
Tests that a group's owner (default member) is returned by the view.
GroupToGroupContentRelationshipTest::testOtherContentIsNotListed in tests/src/Kernel/Views/GroupToGroupContentRelationshipTest.php
Tests that any other group content is not returned by the view.

File

tests/src/Kernel/Views/GroupToGroupContentRelationshipTest.php, line 98

Class

GroupToGroupContentRelationshipTest
Tests the group_to_group_content relationship handler.

Namespace

Drupal\Tests\group\Kernel\Views

Code

protected function createGroup($values = []) {
  $group = $this->entityTypeManager
    ->getStorage('group')
    ->create($values + [
    'type' => 'default',
    'label' => $this
      ->randomMachineName(),
  ]);
  $group
    ->enforceIsNew();
  $group
    ->save();
  return $group;
}