WorkspaceXmlAnonTest.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceXmlAnonTest.php
- 8.9.x core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceXmlAnonTest.php
- 11.x core/modules/workspaces/tests/src/Functional/EntityResource/WorkspaceXmlAnonTest.php
- 11.x core/modules/workspaces/tests/src/Functional/Rest/WorkspaceXmlAnonTest.php
Namespace
Drupal\Tests\workspaces\Functional\EntityResourceFile
-
core/
modules/ workspaces/ tests/ src/ Functional/ EntityResource/ WorkspaceXmlAnonTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\workspaces\Functional\EntityResource;
use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
/**
* Test workspace entities for unauthenticated XML requests.
*
* @group workspaces
*/
class WorkspaceXmlAnonTest extends WorkspaceResourceTestBase {
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();
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
WorkspaceXmlAnonTest | Test workspace entities for unauthenticated XML requests. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.