
| Current Path : /var/www/html/dataninja.cn/core/modules/views/tests/src/Functional/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/dataninja.cn/core/modules/views/tests/src/Functional/ViewsNoResultsBehaviorTest.php |
<?php
namespace Drupal\Tests\views\Functional;
/**
* Tests no results behavior.
*
* @group views
*/
class ViewsNoResultsBehaviorTest extends ViewTestBase {
/**
* Modules to enable.
*
* @var array
*/
public static $modules = ['node', 'user'];
/**
* {@inheritdoc}
*/
protected function setUp($import_test_views = TRUE) {
parent::setUp();
$this->enableViewsTestModule();
$user = $this->createUser([], NULL, TRUE);
$this->drupalLogin($user);
// Set the Stark theme and use the default templates from views module.
/** @var \Drupal\Core\Extension\ThemeHandlerInterface $theme_handler */
$theme_handler = \Drupal::service('theme_handler');
$theme_handler->install(['stark']);
$this->config('system.theme')->set('default', 'stark')->save();
}
/**
* Tests the view with the text.
*/
public function testDuplicateText() {
$output = $this->drupalGet('admin/content');
$this->assertEqual(1, substr_count($output, 'No content available.'), 'Only one message should be present');
}
}