protected function TermTranslationUITest::doTestTranslationEdit in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/taxonomy/src/Tests/TermTranslationUITest.php \Drupal\taxonomy\Tests\TermTranslationUITest::doTestTranslationEdit()
Tests edit content translation.
Overrides ContentTranslationUITestBase::doTestTranslationEdit
File
- core/
modules/ taxonomy/ src/ Tests/ TermTranslationUITest.php, line 145 - Contains \Drupal\taxonomy\Tests\TermTranslationUITest.
Class
- TermTranslationUITest
- Tests the Term Translation UI.
Namespace
Drupal\taxonomy\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);
}
}
}