You are here

public function ContentTranslationUITestBase::testTranslationUI in Drupal 8

Same name in this branch
  1. 8 core/modules/content_translation/src/Tests/ContentTranslationUITestBase.php \Drupal\content_translation\Tests\ContentTranslationUITestBase::testTranslationUI()
  2. 8 core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase::testTranslationUI()
Same name and namespace in other branches
  1. 9 core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase::testTranslationUI()
  2. 10 core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationUITestBase::testTranslationUI()

Tests the basic translation UI.

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

File

core/modules/content_translation/tests/src/Functional/ContentTranslationUITestBase.php, line 55

Class

ContentTranslationUITestBase
Tests the Content Translation UI.

Namespace

Drupal\Tests\content_translation\Functional

Code

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