You are here

public function AssertHelperTraitTest::testCastSafeStrings in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/AssertHelperTraitTest.php \Drupal\Tests\AssertHelperTraitTest::testCastSafeStrings()

@covers ::castSafeStrings @dataProvider providerCastSafeStrings

File

core/tests/Drupal/Tests/AssertHelperTraitTest.php, line 25

Class

AssertHelperTraitTest
@coversDefaultClass \Drupal\Tests\AssertHelperTrait @group simpletest @group Tests @group legacy

Namespace

Drupal\Tests

Code

public function testCastSafeStrings($expected, $value) {
  $this
    ->expectDeprecation('AssertHelperTrait::castSafeStrings() is deprecated in drupal:9.2.0 and is removed from drupal:10.0.0. There is no replacement; assertEquals() will automatically cast MarkupInterface to strings when needed. See https://www.drupal.org/node/3123638');
  $class = new AssertHelperTestClass();
  $this
    ->assertSame($expected, $class
    ->testMethod($value));
}