array( * array('data-id' => 'foo'), * array('data-class' => 'bar'), * ), * ); * @endcode */ protected $tips = []; /** * An admin user with administrative permissions for tour. * * @var \Drupal\user\UserInterface */ protected $adminUser; /** * The permissions required for a logged in user to test tour tips. * * @var array * A list of permissions. */ protected $permissions = ['access tour']; protected function setUp() { parent::setUp(); // Make sure we are using distinct default and administrative themes for // the duration of these tests. $this->container->get('theme_handler')->install(['bartik', 'seven']); $this->config('system.theme') ->set('default', 'bartik') ->set('admin', 'seven') ->save(); $this->permissions[] = 'view the administration theme'; // Create an admin user to view tour tips. $this->adminUser = $this->drupalCreateUser($this->permissions); $this->drupalLogin($this->adminUser); } /** * A simple tip test. */ public function testTips() { foreach ($this->tips as $path => $attributes) { $this->drupalGet($path); $this->assertTourTips($attributes); } } }