You are here

public function SubformStateTest::testSetValuesBroken in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::testSetValuesBroken()
  2. 9 core/tests/Drupal/Tests/Core/Form/SubformStateTest.php \Drupal\Tests\Core\Form\SubformStateTest::testSetValuesBroken()

@covers ::setValues

@dataProvider providerTestSetValuesBroken

File

core/tests/Drupal/Tests/Core/Form/SubformStateTest.php, line 223

Class

SubformStateTest
@coversDefaultClass \Drupal\Core\Form\SubformState

Namespace

Drupal\Tests\Core\Form

Code

public function testSetValuesBroken($parents, $new_values, $expected) {
  $this
    ->expectException(\UnexpectedValueException::class);
  $this
    ->testSetValues($parents, $new_values, $expected);
}