You are here

class NodeXmlAnonTest in Drupal 10

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

@group rest

Hierarchy

Expanded class hierarchy of NodeXmlAnonTest

File

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

Namespace

Drupal\Tests\node\Functional\Rest
View source
class NodeXmlAnonTest extends NodeResourceTestBase {
  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 testPatchPath() {

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

}

Members