JAL-1140 JAL-1215 JAL-1272 test import of RNAML and output as stockholm
authorJim Procter <jprocter@compbio.dundee.ac.uk>
Fri, 15 Feb 2013 15:54:02 +0000 (15:54 +0000)
committerJim Procter <jprocter@compbio.dundee.ac.uk>
Fri, 15 Feb 2013 15:54:02 +0000 (15:54 +0000)
test/jalview/io/RNAMLfileTest.java [new file with mode: 0644]

diff --git a/test/jalview/io/RNAMLfileTest.java b/test/jalview/io/RNAMLfileTest.java
new file mode 100644 (file)
index 0000000..282914b
--- /dev/null
@@ -0,0 +1,31 @@
+package jalview.io;
+
+import static org.junit.Assert.*;
+
+import java.io.File;
+
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+public class RNAMLfileTest
+{
+
+  @BeforeClass
+  public static void setUpBeforeClass() throws Exception
+  {
+  }
+
+  @AfterClass
+  public static void tearDownAfterClass() throws Exception
+  {
+  }
+
+  @Test
+  public void testRnamlToStockholmIO()
+  {
+    StockholmFileTest.testFileIOwithFormat(new File("examples/rna-alignment.xml"),"STH");
+    
+  }
+
+}