Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / simpletest / tests / src / Functional / ThroughUITest.php
1 <?php
2
3 namespace Drupal\Tests\simpletest\Functional;
4
5 use Drupal\Tests\BrowserTestBase;
6
7 /**
8  * Fixture test that is executed during Simpletest UI testing.
9  *
10  * @see \Drupal\simpletest\Tests::testTestingThroughUI()
11  *
12  * @group simpletest
13  */
14 class ThroughUITest extends BrowserTestBase {
15
16   /**
17    * This test method must always pass.
18    */
19   public function testThroughUi() {
20     $this->pass('Success!');
21   }
22
23 }