comparison core/tests/Drupal/FunctionalTests/Hal/EntityViewDisplayHalJsonAnonTest.php @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c75dbcec494b
1 <?php
2
3 namespace Drupal\FunctionalTests\Hal;
4
5 use Drupal\FunctionalTests\Rest\EntityViewDisplayResourceTestBase;
6 use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
7
8 /**
9 * @group hal
10 */
11 class EntityViewDisplayHalJsonAnonTest extends EntityViewDisplayResourceTestBase {
12
13 use AnonResourceTestTrait;
14
15 /**
16 * {@inheritdoc}
17 */
18 public static $modules = ['hal'];
19
20 /**
21 * {@inheritdoc}
22 */
23 protected static $format = 'hal_json';
24
25 /**
26 * {@inheritdoc}
27 */
28 protected static $mimeType = 'application/hal+json';
29
30 }