You are here

NodeTypeHalJsonCookieTest.php in Drupal 9

File

core/modules/node/tests/src/Functional/Hal/NodeTypeHalJsonCookieTest.php
View source
<?php

namespace Drupal\Tests\node\Functional\Hal;

use Drupal\Tests\node\Functional\Rest\NodeTypeResourceTestBase;
use Drupal\Tests\rest\Functional\CookieResourceTestTrait;

/**
 * @group hal
 */
class NodeTypeHalJsonCookieTest extends NodeTypeResourceTestBase {
  use CookieResourceTestTrait;

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'hal',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * {@inheritdoc}
   */
  protected static $format = 'hal_json';

  /**
   * {@inheritdoc}
   */
  protected static $mimeType = 'application/hal+json';

  /**
   * {@inheritdoc}
   */
  protected static $auth = 'cookie';

}

Classes

Namesort descending Description
NodeTypeHalJsonCookieTest @group hal