1714c2739e0841eec77757ecd89bcfa7d3c18804
[yaffs-website] / web / core / modules / rest / tests / src / Functional / EntityResource / ImageStyle / ImageStyleXmlAnonTest.php
1 <?php
2
3 namespace Drupal\Tests\rest\Functional\EntityResource\ImageStyle;
4
5 use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
6 use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
7
8 /**
9  * @group rest
10  */
11 class ImageStyleXmlAnonTest extends ImageStyleResourceTestBase {
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   public function testGet() {
30     // @todo Remove this method override in https://www.drupal.org/node/2905655
31     $this->markTestSkipped();
32   }
33
34 }