Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / workspaces / tests / src / Functional / EntityResource / WorkspaceXmlAnonTest.php
1 <?php
2
3 namespace Drupal\Tests\workspaces\Functional\EntityResource;
4
5 use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
6 use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
7
8 /**
9  * Test workspace entities for unauthenticated XML requests.
10  *
11  * @group workspaces
12  */
13 class WorkspaceXmlAnonTest extends WorkspaceResourceTestBase {
14
15   use AnonResourceTestTrait;
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   /**
29    * {@inheritdoc}
30    */
31   public function testPatchPath() {
32     // Deserialization of the XML format is not supported.
33     $this->markTestSkipped();
34   }
35
36 }