comparison core/tests/Drupal/FunctionalTests/Rest/EntityFormModeJsonBasicAuthTest.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\Rest;
4
5 use Drupal\Tests\rest\Functional\BasicAuthResourceTestTrait;
6
7 /**
8 * @group rest
9 */
10 class EntityFormModeJsonBasicAuthTest extends EntityFormModeResourceTestBase {
11
12 use BasicAuthResourceTestTrait;
13
14 /**
15 * {@inheritdoc}
16 */
17 public static $modules = ['basic_auth'];
18
19 /**
20 * {@inheritdoc}
21 */
22 protected static $format = 'json';
23
24 /**
25 * {@inheritdoc}
26 */
27 protected static $mimeType = 'application/json';
28
29 /**
30 * {@inheritdoc}
31 */
32 protected static $auth = 'basic_auth';
33
34 }