EntityViewDisplayJsonCookieTest.php 467 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace Drupal\FunctionalTests\Rest;
  3. use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
  4. /**
  5. * @group rest
  6. */
  7. class EntityViewDisplayJsonCookieTest extends EntityViewDisplayResourceTestBase {
  8. use CookieResourceTestTrait;
  9. /**
  10. * {@inheritdoc}
  11. */
  12. protected static $format = 'json';
  13. /**
  14. * {@inheritdoc}
  15. */
  16. protected static $mimeType = 'application/json';
  17. /**
  18. * {@inheritdoc}
  19. */
  20. protected static $auth = 'cookie';
  21. }