More updates to stop using dev or alpha or beta versions.
[yaffs-website] / web / core / modules / rest / tests / src / Functional / EntityResource / User / UserXmlCookieTest.php
1 <?php
2
3 namespace Drupal\Tests\rest\Functional\EntityResource\User;
4
5 use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
6 use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
7
8 /**
9  * @group rest
10  */
11 class UserXmlCookieTest extends UserResourceTestBase {
12
13   use CookieResourceTestTrait;
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 static $auth = 'cookie';
30
31   /**
32    * {@inheritdoc}
33    */
34   public function testPatchDxForSecuritySensitiveBaseFields() {
35     // Deserialization of the XML format is not supported.
36     $this->markTestSkipped();
37   }
38
39   /**
40    * {@inheritdoc}
41    */
42   public function testPatchSecurityOtherUser() {
43     // Deserialization of the XML format is not supported.
44     $this->markTestSkipped();
45   }
46
47 }