You are here

public function LogPageTest::testLogPageExists in Automatic Updates 8

Tests that the log page is displayed.

File

tests/src/Functional/LogPageTest.php, line 51

Class

LogPageTest
Tests access permission to log page.

Namespace

Drupal\Tests\automatic_updates\Functional

Code

public function testLogPageExists() {
  $this
    ->drupalGet('admin/reports/automatic_updates_log');
  $this
    ->assertSession()
    ->statusCodeEquals(200);
}