3239b7e22c96a8876a9164c09a1438109a4bb97a
[yaffs-website] / web / core / modules / language / tests / src / Functional / Hal / ConfigurableLanguageHalJsonBasicAuthTest.php
1 <?php
2
3 namespace Drupal\Tests\language\Functional\Hal;
4
5 use Drupal\Tests\language\Functional\Rest\ConfigurableLanguageResourceTestBase;
6 use Drupal\Tests\rest\Functional\BasicAuthResourceWithInterfaceTranslationTestTrait;
7
8 /**
9  * @group hal
10  */
11 class ConfigurableLanguageHalJsonBasicAuthTest extends ConfigurableLanguageResourceTestBase {
12
13   use BasicAuthResourceWithInterfaceTranslationTestTrait;
14
15   /**
16    * {@inheritdoc}
17    */
18   public static $modules = ['hal', 'basic_auth'];
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 = 'basic_auth';
34
35 }