RestResourceConfigHalJsonCookieTest.php in Drupal 8
File
core/modules/rest/tests/src/Functional/Hal/RestResourceConfigHalJsonCookieTest.php
View source
<?php
namespace Drupal\Tests\rest\Functional\Hal;
use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
use Drupal\Tests\rest\Functional\Rest\RestResourceConfigResourceTestBase;
class RestResourceConfigHalJsonCookieTest extends RestResourceConfigResourceTestBase {
use CookieResourceTestTrait;
public static $modules = [
'hal',
];
protected $defaultTheme = 'stark';
protected static $format = 'hal_json';
protected static $mimeType = 'application/hal+json';
protected static $auth = 'cookie';
}