EntityViewDisplayHalJsonCookieTest.php 384 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Drupal\FunctionalTests\Hal;
  3. use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
  4. /**
  5. * @group hal
  6. */
  7. class EntityViewDisplayHalJsonCookieTest extends EntityViewDisplayHalJsonAnonTest {
  8. use CookieResourceTestTrait;
  9. /**
  10. * {@inheritdoc}
  11. */
  12. protected static $auth = 'cookie';
  13. /**
  14. * {@inheritdoc}
  15. */
  16. protected $defaultTheme = 'stark';
  17. }