ReportTest.php in Drupal 10
File
core/modules/views_ui/tests/src/Functional/ReportTest.php
View source
<?php
namespace Drupal\Tests\views_ui\Functional;
class ReportTest extends UITestBase {
protected static $modules = [
'views',
'views_ui',
];
protected $defaultTheme = 'stark';
protected $adminUser;
public function testReport() {
$this
->drupalLogin($this->adminUser);
$this
->drupalGet('admin/reports/views-plugins');
$this
->assertSession()
->statusCodeEquals(200);
}
}
Classes
Name |
Description |
ReportTest |
Tests existence of the views plugin report. |