From 2eb1595480345a9418cb933bd661f301ee5ba5c3 Mon Sep 17 00:00:00 2001 From: Jim Procter Date: Fri, 15 Feb 2013 15:54:02 +0000 Subject: [PATCH] JAL-1140 JAL-1215 JAL-1272 test import of RNAML and output as stockholm --- test/jalview/io/RNAMLfileTest.java | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 test/jalview/io/RNAMLfileTest.java diff --git a/test/jalview/io/RNAMLfileTest.java b/test/jalview/io/RNAMLfileTest.java new file mode 100644 index 0000000..282914b --- /dev/null +++ b/test/jalview/io/RNAMLfileTest.java @@ -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"); + + } + +} -- 1.7.10.2