ViewsNoResultsBehaviorTest.php

Same filename and directory in other branches
  1. 9 core/modules/views/tests/src/Functional/ViewsNoResultsBehaviorTest.php
  2. 10 core/modules/views/tests/src/Functional/ViewsNoResultsBehaviorTest.php
  3. 11.x core/modules/views/tests/src/Functional/ViewsNoResultsBehaviorTest.php

Namespace

Drupal\Tests\views\Functional

File

core/modules/views/tests/src/Functional/ViewsNoResultsBehaviorTest.php

View source
<?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 $defaultTheme = 'stark';
    
    /**
     * {@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\ThemeInstallerInterface $theme_installer */
        $theme_installer = \Drupal::service('theme_installer');
        $theme_installer->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');
    }

}

Classes

Title Deprecated Summary
ViewsNoResultsBehaviorTest Tests no results behavior.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.