TermXmlCookieTest.php

Same filename and directory in other branches
  1. 9 core/modules/taxonomy/tests/src/Functional/Rest/TermXmlCookieTest.php
  2. 8.9.x core/modules/taxonomy/tests/src/Functional/Rest/TermXmlCookieTest.php
  3. 10 core/modules/taxonomy/tests/src/Functional/Rest/TermXmlCookieTest.php

Namespace

Drupal\Tests\taxonomy\Functional\Rest

File

core/modules/taxonomy/tests/src/Functional/Rest/TermXmlCookieTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\taxonomy\Functional\Rest;

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

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

}

Classes

Title Deprecated Summary
TermXmlCookieTest @group rest @group #slow

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