UserXmlAnonTest.php in Drupal 8
File
core/modules/user/tests/src/Functional/Rest/UserXmlAnonTest.php
View source
<?php
namespace Drupal\Tests\user\Functional\Rest;
use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
class UserXmlAnonTest extends UserResourceTestBase {
use AnonResourceTestTrait;
use XmlEntityNormalizationQuirksTrait;
protected static $format = 'xml';
protected static $mimeType = 'text/xml; charset=UTF-8';
protected $defaultTheme = 'stark';
public function testPatchDxForSecuritySensitiveBaseFields() {
$this
->markTestSkipped();
}
}