You are here

public function ContentTranslationUITestBase::testTranslationUI in Drupal 10

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

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();
}