X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FRNAMLfileTest.java;h=ae72de41f2fb9b1ab0316356da899fe9ca08ac37;hb=490bea038483dcc853766de08a8971668930f43a;hp=a39210979ff77053fb8b7eab1545526b5b06aedb;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/test/jalview/io/RNAMLfileTest.java b/test/jalview/io/RNAMLfileTest.java index a392109..ae72de4 100644 --- a/test/jalview/io/RNAMLfileTest.java +++ b/test/jalview/io/RNAMLfileTest.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) - * Copyright (C) 2014 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -20,32 +20,41 @@ */ package jalview.io; -import static org.junit.Assert.*; +import jalview.gui.JvOptionPane; import java.io.File; -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.junit.Test; +import org.testng.annotations.AfterClass; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.Test; public class RNAMLfileTest { - @BeforeClass + @BeforeClass(alwaysRun = true) + public void setUpJvOptionPane() + { + JvOptionPane.setInteractiveMode(false); + JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION); + } + + @BeforeClass(alwaysRun = true) public static void setUpBeforeClass() throws Exception { } - @AfterClass + @AfterClass(alwaysRun = true) public static void tearDownAfterClass() throws Exception { } - @Test + @Test(groups = { "Functional" }) public void testRnamlToStockholmIO() { - StockholmFileTest.testFileIOwithFormat(new File("examples/rna-alignment.xml"),"STH"); - + StockholmFileTest.testFileIOwithFormat(new File( + "examples/testdata/rna-alignment.xml"), FileFormat.Stockholm, + -1, -1, true, true, true); + } }