ContentTranslationViewsUITest.php
Same filename and directory in other branches
- 11.x core/modules/content_translation/tests/src/Functional/Views/ContentTranslationViewsUITest.php
- 10 core/modules/content_translation/tests/src/Functional/Views/ContentTranslationViewsUITest.php
- 9 core/modules/content_translation/tests/src/Functional/Views/ContentTranslationViewsUITest.php
- 8.9.x core/modules/content_translation/tests/src/Functional/Views/ContentTranslationViewsUITest.php
Namespace
Drupal\Tests\content_translation\Functional\ViewsFile
-
core/
modules/ content_translation/ tests/ src/ Functional/ Views/ ContentTranslationViewsUITest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\content_translation\Functional\Views;
use Drupal\Tests\views_ui\Functional\UITestBase;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;
/**
* Tests the views UI when content_translation is enabled.
*/
class ContentTranslationViewsUITest extends UITestBase {
/**
* Views used by this test.
*
* @var array
*/
public static $testViews = [
'test_view',
];
/**
* {@inheritdoc}
*/
protected static $modules = [
'content_translation',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Tests the views UI.
*/
public function testViewsUI() : void {
$this->drupalGet('admin/structure/views/view/test_view/edit');
$this->assertSession()
->titleEquals('Test view (Views test data) | Drupal');
}
}
Classes
| Title | Deprecated | Summary |
|---|---|---|
| ContentTranslationViewsUITest | Tests the views UI when content_translation is enabled. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.