You are here

class NodeXmlBasicAuthTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/node/tests/src/Functional/Rest/NodeXmlBasicAuthTest.php \Drupal\Tests\node\Functional\Rest\NodeXmlBasicAuthTest
  2. 9 core/modules/node/tests/src/Functional/Rest/NodeXmlBasicAuthTest.php \Drupal\Tests\node\Functional\Rest\NodeXmlBasicAuthTest

@group rest

Hierarchy

Expanded class hierarchy of NodeXmlBasicAuthTest

File

core/modules/node/tests/src/Functional/Rest/NodeXmlBasicAuthTest.php, line 11

Namespace

Drupal\Tests\node\Functional\Rest
View source
class NodeXmlBasicAuthTest extends NodeResourceTestBase {
  use BasicAuthResourceTestTrait;
  use XmlEntityNormalizationQuirksTrait;

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'basic_auth',
  ];

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

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

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

  /**
   * {@inheritdoc}
   */
  protected static $auth = 'basic_auth';

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

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

}

Members