Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / rest / tests / src / Functional / EntityResource / Message / MessageJsonAnonTest.php
diff --git a/web/core/modules/rest/tests/src/Functional/EntityResource/Message/MessageJsonAnonTest.php b/web/core/modules/rest/tests/src/Functional/EntityResource/Message/MessageJsonAnonTest.php
new file mode 100644 (file)
index 0000000..9f5b858
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+
+namespace Drupal\Tests\rest\Functional\EntityResource\Message;
+
+use Drupal\Tests\rest\Functional\AnonResourceTestTrait;
+
+/**
+ * @group rest
+ */
+class MessageJsonAnonTest extends MessageResourceTestBase {
+
+  use AnonResourceTestTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $format = 'json';
+
+  /**
+   * {@inheritdoc}
+   */
+  protected static $mimeType = 'application/json';
+
+}