e90485d30c0430198db2b6612addd45b7d9826b1
[yaffs-website] / web / core / modules / hal / tests / src / Functional / EntityResource / ContentLanguageSettings / ContentLanguageSettingsHalJsonAnonTest.php
1 <?php
2
3 namespace Drupal\Tests\hal\Functional\EntityResource\ContentLanguageSettings;
4
5 use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
6 use Drupal\Tests\rest\Functional\EntityResource\ContentLanguageSettings\ContentLanguageSettingsResourceTestBase;
7
8 /**
9  * @group hal
10  */
11 class ContentLanguageSettingsHalJsonAnonTest extends ContentLanguageSettingsResourceTestBase {
12
13   use AnonResourceTestTrait;
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 }