dd37532065a0ddffcbbeaa43b71564f7011be7fb
[yaffs-website] / Vocabulary / VocabularyHalJsonCookieTest.php
1 <?php
2
3 namespace Drupal\Tests\hal\Functional\EntityResource\Vocabulary;
4
5 use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
6 use Drupal\Tests\rest\Functional\EntityResource\Vocabulary\VocabularyResourceTestBase;
7
8 /**
9  * @group hal
10  */
11 class VocabularyHalJsonCookieTest extends VocabularyResourceTestBase {
12
13   use CookieResourceTestTrait;
14
15   /**
16    * {@inheritdoc}
17    */
18   public static $modules = ['hal'];
19
20   /**
21    * {@inheritdoc}
22    */
23   protected static $format = 'hal_json';
24
25   /**
26    * {@inheritdoc}
27    */
28   protected static $mimeType = 'application/hal+json';
29
30   /**
31    * {@inheritdoc}
32    */
33   protected static $auth = 'cookie';
34
35 }