c37a28376d051b84dc02f1d9b46de8f0c9afd39c
[yaffs-website] / web / core / modules / workspaces / tests / src / Functional / EntityResource / WorkspaceXmlCookieTest.php
1 <?php
2
3 namespace Drupal\Tests\workspaces\Functional\EntityResource;
4
5 use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
6 use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
7
8 /**
9  * Test workspace entities for XML requests.
10  *
11  * @group workspaces
12  */
13 class WorkspaceXmlCookieTest extends WorkspaceResourceTestBase {
14
15   use CookieResourceTestTrait;
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   protected static $auth = 'cookie';
32
33   /**
34    * {@inheritdoc}
35    */
36   public function testPatchPath() {
37     // Deserialization of the XML format is not supported.
38     $this->markTestSkipped();
39   }
40
41 }