Mercurial > hg > isophonics-drupal-site
comparison core/modules/simpletest/tests/src/Functional/ThroughUITest.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
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 } |