function CommentResourceTestBase::commentResourceTestBaseSkipTests

Same name in other branches
  1. 11.x core/modules/comment/tests/src/Functional/Rest/CommentResourceTestBase.php \Drupal\Tests\comment\Functional\Rest\CommentResourceTestBase::commentResourceTestBaseSkipTests()

Marks some tests as skipped because XML cannot be deserialized.

@before

File

core/modules/comment/tests/src/Functional/Rest/CommentResourceTestBase.php, line 58

Class

CommentResourceTestBase

Namespace

Drupal\Tests\comment\Functional\Rest

Code

public function commentResourceTestBaseSkipTests() : void {
    if (static::$format === 'xml' && in_array($this->name(), [
        'testPostDxWithoutCriticalBaseFields',
        'testPostSkipCommentApproval',
    ], TRUE)) {
        $this->markTestSkipped('Deserialization of the XML format is not supported.');
    }
}

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