You are here

public function WebAssertArgumentsTest::testOptionNotExists in Drupal 9

@covers ::optionNotExists

File

core/tests/Drupal/Tests/Core/Assert/WebAssertArgumentsTest.php, line 99

Class

WebAssertArgumentsTest
Tests that calling WebAssert methods with extra arguments leads to errors.

Namespace

Drupal\Tests\Core\Assert

Code

public function testOptionNotExists() : void {
  $this
    ->expectDeprecation('Calling Drupal\\Tests\\WebAssert::optionNotExists with more than three arguments is deprecated in drupal:9.1.0 and will throw an \\InvalidArgumentException in drupal:10.0.0. See https://www.drupal.org/node/3162537');
  $select = $this
    ->prophesize(Element::class);
  $select
    ->find(Argument::any(), Argument::any())
    ->willReturn(NULL);
  $this->page
    ->find(Argument::any(), Argument::any())
    ->willReturn($select
    ->reveal());
  $this->webAssert
    ->optionNotExists('foo', 'qux', NULL, 'Extra argument');
}