function WebAssertTest::testInvalidLinkNotExistsExact

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

Tests linkNotExistsExact() functionality fail.

@covers ::linkNotExistsExact

File

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

Class

WebAssertTest
Tests WebAssert functionality.

Namespace

Drupal\Tests\Core\Test

Code

public function testInvalidLinkNotExistsExact() : void {
    $this->visit('', '<a href="http://example.com">foo|bar|baz</a>');
    $this->expectException(ExpectationException::class);
    $this->expectExceptionMessage('Link with label foo|bar|baz found');
    $this->assertSession()
        ->linkNotExistsExact('foo|bar|baz');
    $this->addToAssertionCount(1);
}

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