You are here

function ContentTranslationUITestBase::testTranslationUI in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php \Drupal\content_translation\Tests\ContentTranslationUITestBase::testTranslationUI()

Tests the basic translation UI.

2 calls to ContentTranslationUITestBase::testTranslationUI()
NodeTranslationUITest::testTranslationUI in core/modules/node/src/Tests/NodeTranslationUITest.php
Tests the basic translation UI.
TermTranslationUITest::testTranslationUI in core/modules/taxonomy/src/Tests/TermTranslationUITest.php
Tests the basic translation UI.
2 methods override ContentTranslationUITestBase::testTranslationUI()
NodeTranslationUITest::testTranslationUI in core/modules/node/src/Tests/NodeTranslationUITest.php
Tests the basic translation UI.
TermTranslationUITest::testTranslationUI in core/modules/taxonomy/src/Tests/TermTranslationUITest.php
Tests the basic translation UI.

File

core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php, line 60
Contains \Drupal\content_translation\Tests\ContentTranslationUITestBase.

Class

ContentTranslationUITestBase
Tests the Content Translation UI.

Namespace

Drupal\content_translation\Tests

Code

function testTranslationUI() {
  $this
    ->doTestBasicTranslation();
  $this
    ->doTestTranslationOverview();
  $this
    ->doTestOutdatedStatus();
  $this
    ->doTestPublishedStatus();
  $this
    ->doTestAuthoringInfo();
  $this
    ->doTestTranslationEdit();
  $this
    ->doTestTranslationChanged();
  $this
    ->doTestChangedTimeAfterSaveWithoutChanges();
  $this
    ->doTestTranslationDeletion();
}