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