6c35159685280aefa5a6a2bfe24247d93b4dadd2
[yaffs-website] / web / core / modules / hal / tests / src / Functional / EntityResource / Item / ItemHalJsonAnonTest.php
1 <?php
2
3 namespace Drupal\Tests\hal\Functional\EntityResource\Item;
4
5 use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
6
7 /**
8  * @group hal
9  */
10 class ItemHalJsonAnonTest extends ItemHalJsonTestBase {
11
12   use AnonResourceTestTrait;
13
14   /**
15    * {@inheritdoc}
16    */
17   public static $modules = ['hal'];
18
19   /**
20    * {@inheritdoc}
21    */
22   protected static $format = 'hal_json';
23
24   /**
25    * {@inheritdoc}
26    */
27   protected static $mimeType = 'application/hal+json';
28
29 }