ContentTranslationViewsUITest.php in Drupal 9
File
core/modules/content_translation/tests/src/Functional/Views/ContentTranslationViewsUITest.php
View source
<?php
namespace Drupal\Tests\content_translation\Functional\Views;
use Drupal\Tests\views_ui\Functional\UITestBase;
class ContentTranslationViewsUITest extends UITestBase {
public static $testViews = [
'test_view',
];
protected static $modules = [
'content_translation',
];
protected $defaultTheme = 'stark';
public function testViewsUI() {
$this
->drupalGet('admin/structure/views/view/test_view/edit');
$this
->assertSession()
->titleEquals('Test view (Views test data) | Drupal');
}
}