function AssertHelperTraitTest::providerCastSafeStrings
Same name in other branches
- 8.9.x core/tests/Drupal/Tests/AssertHelperTraitTest.php \Drupal\Tests\AssertHelperTraitTest::providerCastSafeStrings()
File
-
core/
tests/ Drupal/ Tests/ AssertHelperTraitTest.php, line 31
Class
- AssertHelperTraitTest
- @coversDefaultClass \Drupal\Tests\AssertHelperTrait @group simpletest @group Tests @group legacy
Namespace
Drupal\TestsCode
public function providerCastSafeStrings() {
$safe_string = Markup::create('test safe string');
return [
[
'test simple string',
'test simple string',
],
[
[
'test simple array',
'test simple array',
],
[
'test simple array',
'test simple array',
],
],
[
'test safe string',
$safe_string,
],
[
[
'test safe string',
'test safe string',
],
[
$safe_string,
$safe_string,
],
],
[
[
'test safe string',
'mixed array',
'test safe string',
],
[
$safe_string,
'mixed array',
$safe_string,
],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.