public function GroupContentStorageTest::testLoadByUnsavedEntity in Group 2.0.x
Same name and namespace in other branches
- 8 tests/src/Kernel/GroupContentStorageTest.php \Drupal\Tests\group\Kernel\GroupContentStorageTest::testLoadByUnsavedEntity()
Tests the loading of GroupContent entities for an unsaved entity.
@covers ::loadByEntity
File
- tests/
src/ Kernel/ GroupContentStorageTest.php, line 184
Class
- GroupContentStorageTest
- Tests the behavior of group content storage handler.
Namespace
Drupal\Tests\group\KernelCode
public function testLoadByUnsavedEntity() {
$group = $this
->createUnsavedGroup();
$this
->expectException(EntityStorageException::class);
$this
->expectExceptionMessage('Cannot load GroupContent entities for an unsaved entity.');
$this->storage
->loadByEntity($group);
}