diff --git a/tests/drupal8/config/install/test.settings.yml b/tests/drupal8/config/install/test.settings.yml
index c333f89..bc16848 100644
--- a/tests/drupal8/config/install/test.settings.yml
+++ b/tests/drupal8/config/install/test.settings.yml
@@ -58,3 +58,7 @@ complex_variable:
   key1:
     key2: 'text'
   value: 'Complex variable test'
+
+# tests for plural source strings
+plural_string: "1 place\x03@count places"
+plural_string_with_context: "1 comment\x03@count comments"
diff --git a/tests/drupal8/config/schema/test.data_types.schema.yml b/tests/drupal8/config/schema/test.data_types.schema.yml
index 34633c8..8af0bd1 100644
--- a/tests/drupal8/config/schema/test.data_types.schema.yml
+++ b/tests/drupal8/config/schema/test.data_types.schema.yml
@@ -1,19 +1,24 @@
 translatable_string:
   type: string
   translatable: true
+
 untranslatable_text:
   type: text
   translatable: false
+
 translatable_with_context:
   type: string
   translatable: true
   translation context: 'Test context'
+
 label_with_context:
   type: label
   translation context: 'Test label with context'
+
 label_context_override:
   type: label_with_context
   translation context: 'Test context override'
+
 simple_mapping:
   type: mapping
   mapping:
@@ -24,8 +29,16 @@ simple_mapping:
       type: label
     code:
       type: translatable_string
+
 mapping_with_type:
   type: simple_mapping
   mapping:
     extra_label:
       type: label
+
+plural_string:
+  type: plural_label
+
+plural_string_with_context:
+  type: plural_label
+  translation context: 'Test context'
diff --git a/tests/drupal8/config/schema/test.schema.yml b/tests/drupal8/config/schema/test.schema.yml
index 84299da..efdd275 100644
--- a/tests/drupal8/config/schema/test.schema.yml
+++ b/tests/drupal8/config/schema/test.schema.yml
@@ -41,3 +41,7 @@ test.settings:
       type: key_variable
     complex_variable:
       type: complex_variable
+    plural_string:
+      type: plural_string
+    plural_string_with_context:
+      type: plural_string_with_context
diff --git a/tests/potx.test b/tests/potx.test
index 1df2b9d..fb9781f 100644
--- a/tests/potx.test
+++ b/tests/potx.test
@@ -468,6 +468,9 @@ class PotxTestCase extends DrupalWebTestCase {
     $this->assertNoMsgID('Basic variable (custom)');
     $this->assertNoMsgID('Parent variable (custom)');
     $this->assertNoMsgID('Key variable (custom)');
+
+    $this->assertPluralID('1 place', '@count places');
+    $this->assertPluralID('1 comment', '@count comments', 'Test context');
   }
 
   /**
