ThroughUITest.php

Namespace

Drupal\Tests\simpletest\Functional

File

core/modules/simpletest/tests/src/Functional/ThroughUITest.php

View source
<?php

namespace Drupal\Tests\simpletest\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Fixture test that is executed during Simpletest UI testing.
 *
 * @see \Drupal\simpletest\Tests::testTestingThroughUI()
 *
 * @group simpletest
 * @group legacy
 */
class ThroughUITest extends BrowserTestBase {
    
    /**
     * This test method must always pass.
     */
    public function testThroughUi() {
        $this->pass('Success!');
    }

}

Classes

Title Deprecated Summary
ThroughUITest Fixture test that is executed during Simpletest UI testing.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.