ContentTranslationViewsUITest.php in Zircon Profile 8
File
core/modules/content_translation/src/Tests/Views/ContentTranslationViewsUITest.php
View source
<?php
namespace Drupal\content_translation\Tests\Views;
use Drupal\views_ui\Tests\UITestBase;
class ContentTranslationViewsUITest extends UITestBase {
public static $testViews = array(
'test_view',
);
public static $modules = array(
'content_translation',
);
public function testViewsUI() {
$this
->drupalGet('admin/structure/views/view/test_view/edit');
$this
->assertTitle(t('@label (@table) | @site-name', array(
'@label' => 'Test view',
'@table' => 'Views test data',
'@site-name' => $this
->config('system.site')
->get('name'),
)));
}
}