new test files


git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@171 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/tests/19-param-OK.asn1.-EF b/tests/19-param-OK.asn1.-EF
new file mode 100644
index 0000000..8ece75c
--- /dev/null
+++ b/tests/19-param-OK.asn1.-EF
@@ -0,0 +1,28 @@
+
+ModuleTestParam {iso(-1) org(3) dod(6) internet(1) private(4)
+	enterprise(1) spelio(9363) software(1) asn1c(5) test(1)
+	19 }
+DEFINITIONS ::=
+BEGIN
+
+SIGNED{ToBeSigned} ::= SEQUENCE {
+    toBeSigned	 ToBeSigned,
+    algorithm	 OBJECT IDENTIFIER,
+    signature	 BIT STRING
+}
+
+Certificate ::= SEQUENCE {
+    toBeSigned	 SEQUENCE {
+        version	 INTEGER,    
+        signature	 OBJECT IDENTIFIER,    
+        issuer	 Name
+    },
+    algorithm	 OBJECT IDENTIFIER,
+    signature	 BIT STRING
+}
+
+Name ::= SEQUENCE OF RelativeDistinguishedName
+
+RelativeDistinguishedName ::= SET SIZE(1..MAX) OF IA5String (FROM("A".."Z" | "a".."z" | "0-9" | ",-."))
+
+END