comparison core/tests/Drupal/FunctionalTests/Rest/EntityFormModeXmlCookieTest.php @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents
children
comparison
equal deleted inserted replaced
15:e200cb7efeb3 16:c2387f117808
1 <?php
2
3 namespace Drupal\FunctionalTests\Rest;
4
5 use Drupal\Tests\rest\Functional\CookieResourceTestTrait;
6 use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
7
8 /**
9 * @group rest
10 */
11 class EntityFormModeXmlCookieTest extends EntityFormModeResourceTestBase {
12
13 use CookieResourceTestTrait;
14 use XmlEntityNormalizationQuirksTrait;
15
16 /**
17 * {@inheritdoc}
18 */
19 protected static $format = 'xml';
20
21 /**
22 * {@inheritdoc}
23 */
24 protected static $mimeType = 'text/xml; charset=UTF-8';
25
26 /**
27 * {@inheritdoc}
28 */
29 protected static $auth = 'cookie';
30
31 }