1<?php
2
3namespace Drupal\Tests\language\Functional\Rest;
4
5use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
6use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
7
8/**
9 * @group rest
10 */
11class ContentLanguageSettingsXmlAnonTest extends ContentLanguageSettingsResourceTestBase {
12
13  use AnonResourceTestTrait;
14  use XmlEntityNormalizationQuirksTrait;
15
16  /**
17   * {@inheritdoc}
18   */
19  protected static $format = 'xml';
20
21  /**
22   * {@inheritdoc}
23   */
24  protected static $mimeType = 'text/xml; charset=UTF-8';
25
26  /**
27   * {@inheritdoc}
28   */
29  protected $defaultTheme = 'stark';
30
31}
32