Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / tests / Drupal / FunctionalTests / Rest / EntityFormModeXmlAnonTest.php
diff --git a/web/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeXmlAnonTest.php b/web/core/tests/Drupal/FunctionalTests/Rest/EntityFormModeXmlAnonTest.php
new file mode 100644 (file)
index 0000000..2da724f
--- /dev/null
@@ -0,0 +1,26 @@
+<?php
+
+namespace Drupal\FunctionalTests\Rest;
+
+use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
+use Drupal\Tests\rest\Functional\EntityResource\XmlEntityNormalizationQuirksTrait;
+
+/**
+ * @group rest
+ */
+class EntityFormModeXmlAnonTest extends EntityFormModeResourceTestBase {
+
+  use AnonResourceTestTrait;
+  use XmlEntityNormalizationQuirksTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $format = 'xml';
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $mimeType = 'text/xml; charset=UTF-8';
+
+}