'foo'. * * @return \Drupal\Core\Entity\EntityInterface * Created entity. */ protected function createEntity($entity_type, array $values = array()) { $storage = $this->getEntityTypeManager()->getStorage($entity_type); $entity = $storage->create($values); $status = $entity->save(); \Drupal::service('router.builder')->rebuild(); if ($this instanceof \PHPUnit_Framework_TestCase) { $this->assertSame($status, SAVED_NEW, (new FormattableMarkup('Created entity %id of type %type.', ['%id' => $entity->id(), '%type' => $entity_type]))->__toString()); } else { $this->assertEqual($status, SAVED_NEW, (new FormattableMarkup('Created entity %id of type %type.', ['%id' => $entity->id(), '%type' => $entity_type]))->__toString()); } return $entity; } /** * @return \Drupal\Core\Entity\EntityTypeManagerInterface */ protected function getEntityTypeManager() { if (!isset($this->entityTypeManager)) { $this->entityTypeManager = $this->container->get('entity_type.manager'); } return $this->entityTypeManager; } }