GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/tour/src/Tests/ |
Upload File : |
<?php namespace Drupal\tour\Tests; /** * Simple tour tips test base. */ abstract class TourTestBasic extends TourTestBase { /** * Tour tip attributes to be tested. Keyed by the path. * * @var array * An array of tip attributes, keyed by path. * * @code * protected $tips = array( * '/foo/bar' => 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); } } }