protected function UserTranslationUITest::doTestTranslationEdit in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/user/src/Tests/UserTranslationUITest.php \Drupal\user\Tests\UserTranslationUITest::doTestTranslationEdit()
Tests edit content translation.
Overrides ContentTranslationUITestBase::doTestTranslationEdit
File
- core/
modules/ user/ src/ Tests/ UserTranslationUITest.php, line 60 - Contains \Drupal\user\Tests\UserTranslationUITest.
Class
- UserTranslationUITest
- Tests the User Translation UI.
Namespace
Drupal\user\TestsCode
protected function doTestTranslationEdit() {
$entity = entity_load($this->entityTypeId, $this->entityId, TRUE);
$languages = $this->container
->get('language_manager')
->getLanguages();
foreach ($this->langcodes as $langcode) {
// We only want to test the title for non-english translations.
if ($langcode != 'en') {
$options = array(
'language' => $languages[$langcode],
);
$url = $entity
->urlInfo('edit-form', $options);
$this
->drupalGet($url);
$title = t('@title [%language translation]', array(
'@title' => $entity
->getTranslation($langcode)
->label(),
'%language' => $languages[$langcode]
->getName(),
));
$this
->assertRaw($title);
}
}
}