function EntityTestTextItemNormalizerTest::providerTestGetWithFormat

Same name in other branches
  1. 9 core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestTextItemNormalizerTest.php \Drupal\Tests\entity_test\Functional\Rest\EntityTestTextItemNormalizerTest::providerTestGetWithFormat()
  2. 8.9.x core/modules/system/tests/modules/entity_test/tests/src/Functional/Rest/EntityTestTextItemNormalizerTest.php \Drupal\Tests\entity_test\Functional\Rest\EntityTestTextItemNormalizerTest::providerTestGetWithFormat()
  3. 10 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\Rest

Code

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.