Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / hal / tests / src / Functional / EntityResource / EntityTestBundle / EntityTestBundleHalJsonAnonTest.php
1 <?php
2
3 namespace Drupal\Tests\hal\Functional\EntityResource\EntityTestBundle;
4
5 use Drupal\Tests\hal\Functional\EntityResource\HalEntityNormalizationTrait;
6 use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
7 use Drupal\Tests\rest\Functional\EntityResource\EntityTestBundle\EntityTestBundleResourceTestBase;
8
9 /**
10  * @group hal
11  */
12 class EntityTestBundleHalJsonAnonTest extends EntityTestBundleResourceTestBase {
13
14   use HalEntityNormalizationTrait;
15   use AnonResourceTestTrait;
16
17   /**
18    * {@inheritdoc}
19    */
20   public static $modules = ['hal'];
21
22   /**
23    * {@inheritdoc}
24    */
25   protected static $format = 'hal_json';
26
27   /**
28    * {@inheritdoc}
29    */
30   protected static $mimeType = 'application/hal+json';
31
32 }