You are here

protected function SlickTestTrait::verifyPages in Slick Carousel 8

Same name and namespace in other branches
  1. 8.2 tests/src/Traits/SlickTestTrait.php \Drupal\Tests\slick\Traits\SlickTestTrait::verifyPages()

Verifies the logged in user has access to the various pages.

Parameters

array $pages: The array of pages we want to test.

int $response: (optional) An HTTP response code. Defaults to 200.

File

tests/src/Traits/SlickTestTrait.php, line 18

Class

SlickTestTrait
A Trait common for Slick tests.

Namespace

Drupal\Tests\slick\Traits

Code

protected function verifyPages(array $pages = [], $response = 200) {
  foreach ($pages as $page) {
    $this
      ->drupalGet($page);
    $this
      ->assertSession()
      ->statusCodeEquals($response);
  }
}