58d15b3aa2c788d07ae676a97a95c740f8a0caca
[yaffs-website] / web / core / modules / system / tests / modules / entity_test / tests / src / Functional / Rest / EntityTestJsonAnonTest.php
1 <?php
2
3 namespace Drupal\Tests\entity_test\Functional\Rest;
4
5 use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
6 use Drupal\Tests\rest\Functional\EntityResource\FormatSpecificGetBcRouteTestTrait;
7
8 /**
9  * @group rest
10  */
11 class EntityTestJsonAnonTest extends EntityTestResourceTestBase {
12
13   use AnonResourceTestTrait;
14   use FormatSpecificGetBcRouteTestTrait;
15
16   /**
17    * {@inheritdoc}
18    */
19   protected static $format = 'json';
20
21   /**
22    * {@inheritdoc}
23    */
24   protected static $mimeType = 'application/json';
25
26 }