EntityViewDisplayJsonCookieTest.php 536 B

12345678910111213141516171819202122232425262728293031323334
  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. /**
  22. * {@inheritdoc}
  23. */
  24. protected $defaultTheme = 'stark';
  25. }