You are here

public function TourUITest::testUi in Tour UI 8

Tests the listing and editing of a tour.

File

tests/src/Functional/TourUITest.php, line 43

Class

TourUITest
Tests the Tour UI.

Namespace

Drupal\Tests\tour_ui\Functional

Code

public function testUi() {
  $this
    ->drupalLogin($this
    ->drupalCreateUser([
    'administer tour',
  ]));
  $this
    ->listTest();
  $this
    ->editTest();
  $this
    ->tipTest();
}