1<?php
2
3namespace Drupal\Tests\rest\Functional\Rest;
4
5use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
6
7/**
8 * @group rest
9 */
10class RestResourceConfigJsonCookieTest extends RestResourceConfigResourceTestBase {
11
12  use CookieResourceTestTrait;
13
14  /**
15   * {@inheritdoc}
16   */
17  protected static $format = 'json';
18
19  /**
20   * {@inheritdoc}
21   */
22  protected static $mimeType = 'application/json';
23
24  /**
25   * {@inheritdoc}
26   */
27  protected static $auth = 'cookie';
28
29  /**
30   * {@inheritdoc}
31   */
32  protected $defaultTheme = 'stark';
33
34}
35