You are here

UserXmlAnonTest.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/modules/user/tests/src/Functional/Rest/UserXmlAnonTest.php

File

core/modules/user/tests/src/Functional/Rest/UserXmlAnonTest.php
View source
<?php

namespace Drupal\Tests\user\Functional\Rest;

use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;

/**
 * @group rest
 */
class UserXmlAnonTest extends UserResourceTestBase {
  use AnonResourceTestTrait;
  use XmlEntityNormalizationQuirksTrait;

  /**
   * {@inheritdoc}
   */
  protected static $format = 'xml';

  /**
   * {@inheritdoc}
   */
  protected static $mimeType = 'text/xml; charset=UTF-8';

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  public function testPatchDxForSecuritySensitiveBaseFields() {

    // Deserialization of the XML format is not supported.
    $this
      ->markTestSkipped();
  }

}

Classes

Namesort descending Description
UserXmlAnonTest @group rest