function WebAssertTest::testInvalidLinkByHrefExistsExact

Same name in this branch
  1. 11.x core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testInvalidLinkByHrefExistsExact()
Same name in other branches
  1. 10 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testInvalidLinkByHrefExistsExact()
  2. 10 core/tests/Drupal/Tests/Core/Test/WebAssertTest.php \Drupal\Tests\Core\Test\WebAssertTest::testInvalidLinkByHrefExistsExact()

Tests linkByHrefExistsExact() functionality fail.

@covers ::linkByHrefExistsExact

File

core/tests/Drupal/Tests/Core/Test/WebAssertTest.php, line 310

Class

WebAssertTest
Tests WebAssert functionality.

Namespace

Drupal\Tests\Core\Test

Code

public function testInvalidLinkByHrefExistsExact() : void {
    $this->visit('', '<a href="/user/login">Log in</a><a href="/user/register">Register</a>');
    $this->expectException(ExpectationException::class);
    $this->assertSession()
        ->linkByHrefExistsExact('/foo');
}

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