UserXmlCookieTest.php

Same filename and directory in other branches
  1. 11.x core/modules/user/tests/src/Functional/Rest/UserXmlCookieTest.php

Namespace

Drupal\Tests\user\Functional\Rest

File

core/modules/user/tests/src/Functional/Rest/UserXmlCookieTest.php

View source
<?php

namespace Drupal\Tests\user\Functional\Rest;

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

/**
 * @group rest
 */
class UserXmlCookieTest extends UserResourceTestBase {
  use CookieResourceTestTrait;
  use XmlEntityNormalizationQuirksTrait;
  
  /**
   * {@inheritdoc}
   */
  protected static $format = 'xml';
  
  /**
   * {@inheritdoc}
   */
  protected static $mimeType = 'text/xml; charset=UTF-8';
  
  /**
   * {@inheritdoc}
   */
  protected static $auth = 'cookie';
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * {@inheritdoc}
   */
  public function testPatchDxForSecuritySensitiveBaseFields() {
    // Deserialization of the XML format is not supported.
    $this->markTestSkipped();
  }
  
  /**
   * {@inheritdoc}
   */
  public function testPatchSecurityOtherUser() {
    // Deserialization of the XML format is not supported.
    $this->markTestSkipped();
  }

}

Classes

Title Deprecated Summary
UserXmlCookieTest @group rest

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.