CommentXmlCookieTest.php in Drupal 8
File
core/modules/comment/tests/src/Functional/Rest/CommentXmlCookieTest.php
View source
<?php
namespace Drupal\Tests\comment\Functional\Rest;
use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
class CommentXmlCookieTest extends CommentResourceTestBase {
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 testPostDxWithoutCriticalBaseFields() {
$this
->markTestSkipped();
}
public function testPostSkipCommentApproval() {
$this
->markTestSkipped();
}
}