grantPermissionsToTestedRole(['administer display modes']); } /** * {@inheritdoc} */ protected function createEntity() { $entity_view_mode = EntityViewMode::create([ 'id' => 'user.test', 'label' => 'Test', 'targetEntityType' => 'user', ]); $entity_view_mode->save(); return $entity_view_mode; } /** * {@inheritdoc} */ protected function getExpectedNormalizedEntity() { return [ 'cache' => TRUE, 'dependencies' => [ 'module' => [ 'user', ], ], 'id' => 'user.test', 'label' => 'Test', 'langcode' => 'en', 'status' => TRUE, 'targetEntityType' => 'user', 'uuid' => $this->entity->uuid(), ]; } /** * {@inheritdoc} */ protected function getNormalizedPostEntity() { // @todo Update in https://www.drupal.org/node/2300677. } }