function EntityTestTextItemNormalizerTest::providerTestGetWithFormat
Same name in other branches
- 9 core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestTextItemNormalizerTest.php \Drupal\Tests\entity_test\Functional\Rest\EntityTestTextItemNormalizerTest::providerTestGetWithFormat()
- 8.9.x core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestTextItemNormalizerTest.php \Drupal\Tests\entity_test\Functional\Rest\EntityTestTextItemNormalizerTest::providerTestGetWithFormat()
- 11.x core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestTextItemNormalizerTest.php \Drupal\Tests\entity_test\Functional\Rest\EntityTestTextItemNormalizerTest::providerTestGetWithFormat()
File
-
core/
modules/ system/ tests/ modules/ entity_test/ tests/ src/ Functional/ Rest/ EntityTestTextItemNormalizerTest.php, line 188
Class
- EntityTestTextItemNormalizerTest
- @group rest @group #slow
Namespace
Drupal\Tests\entity_test\Functional\RestCode
public static function providerTestGetWithFormat() {
return [
'format specified (different from fallback format)' => [
'pablo',
[
'config:filter.format.pablo',
],
],
'format specified (happens to be the same as fallback format)' => [
'plain_text',
[
'config:filter.format.plain_text',
],
],
'no format specified: fallback format used automatically' => [
FALSE,
[
'config:filter.format.plain_text',
'config:filter.settings',
],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.