public function GroupContentStorageTest::testLoadByGroup in Group 8
Same name and namespace in other branches
- 2.0.x tests/src/Kernel/GroupContentStorageTest.php \Drupal\Tests\group\Kernel\GroupContentStorageTest::testLoadByGroup()
Tests the loading of GroupContent entities for a group.
@covers ::loadByGroup
File
- tests/
src/ Kernel/ GroupContentStorageTest.php, line 174
Class
- GroupContentStorageTest
- Tests the behavior of group content storage handler.
Namespace
Drupal\Tests\group\KernelCode
public function testLoadByGroup() {
$group = $this
->createGroup();
$this
->assertCount(1, $this->storage
->loadByGroup($group), 'Managed to load the group creator membership by group.');
}