05679525e781dc6727483a6dcde24d773f47f50b
[yaffs-website] / web / core / modules / menu_link_content / tests / src / Functional / Rest / MenuLinkContentJsonCookieTest.php
1 <?php
2
3 namespace Drupal\Tests\menu_link_content\Functional\Rest;
4
5 use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
6
7 /**
8  * @group rest
9  */
10 class MenuLinkContentJsonCookieTest extends MenuLinkContentResourceTestBase {
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 }