Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalTests/WebAssertTest.php \Drupal\FunctionalTests\WebAssertTest::testAddressNotEqualsException()

@covers ::addressNotEquals

File

core/tests/Drupal/FunctionalTests/WebAssertTest.php, line 133

Class

WebAssertTest
Tests WebAssert functionality.

Namespace

Drupal\FunctionalTests

Code

public function testAddressNotEqualsException() : void {
  $this
    ->drupalGet('test-page', [
    'query' => [
      'a' => 'b',
      'c' => 'd',
    ],
  ]);
  $this
    ->expectException(ExpectationException::class);
  $this
    ->expectExceptionMessage('Current page is "/test-page?a=b&c=d", but should not be.');
  $this
    ->assertSession()
    ->addressNotEquals('test-page?a=b&c=d');
}