X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FRNAMLfileTest.java;h=65cea6f40d127e02e09489367aaa7d0ca1344d4b;hb=0ae965fc73680bdc69b06986c060ff17342c4787;hp=8384ecc857b65a31dc7181245ae971d7094d975d;hpb=17e77c3f2949a0729322b4a8d907f3f34b6a9914;p=jalview.git diff --git a/test/jalview/io/RNAMLfileTest.java b/test/jalview/io/RNAMLfileTest.java index 8384ecc..65cea6f 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.9) - * Copyright (C) 2015 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,6 +20,8 @@ */ package jalview.io; +import jalview.gui.JvOptionPane; + import java.io.File; import org.testng.annotations.AfterClass; @@ -30,11 +32,18 @@ public class RNAMLfileTest { @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 { } @@ -42,8 +51,9 @@ public class RNAMLfileTest @Test(groups = { "Functional" }) public void testRnamlToStockholmIO() { - StockholmFileTest.testFileIOwithFormat(new File( - "examples/testdata/rna-alignment.xml"), "STH", -1, -1); + StockholmFileTest.testFileIOwithFormat( + new File("examples/testdata/rna-alignment.xml"), + FileFormat.Stockholm, -1, -1, true, true, true); }