a5548f9a78b1a604eddc304907dac8a9b8d2dac0
[yaffs-website] / web / core / modules / system / tests / modules / entity_test / tests / src / Functional / Rest / EntityTestXmlAnonTest.php
1 <?php
2
3 namespace Drupal\Tests\entity_test\Functional\Rest;
4
5 use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
6 use Drupal\Tests\rest\Functional\EntityResource\FormatSpecificGetBcRouteTestTrait;
7 use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
8
9 /**
10  * @group rest
11  */
12 class EntityTestXmlAnonTest extends EntityTestResourceTestBase {
13
14   use AnonResourceTestTrait;
15   use FormatSpecificGetBcRouteTestTrait;
16   use XmlEntityNormalizationQuirksTrait;
17
18   /**
19    * {@inheritdoc}
20    */
21   protected static $format = 'xml';
22
23   /**
24    * {@inheritdoc}
25    */
26   protected static $mimeType = 'text/xml; charset=UTF-8';
27
28 }