X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Fjalview%2Fio%2FRNAMLfileTest.java;h=d41446b37eb4fd978391bbb9a58cf3694aaa1ddc;hb=8fc8d1b3ae5ef0e47b105bcf3ba72b910516e84b;hp=282914bce7061e09fbc446750107fa159c1707e7;hpb=2eb1595480345a9418cb933bd661f301ee5ba5c3;p=jalview.git diff --git a/test/jalview/io/RNAMLfileTest.java b/test/jalview/io/RNAMLfileTest.java index 282914b..d41446b 100644 --- a/test/jalview/io/RNAMLfileTest.java +++ b/test/jalview/io/RNAMLfileTest.java @@ -1,17 +1,35 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.io; -import static org.junit.Assert.*; - 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 static void setUpBeforeClass() throws Exception { } @@ -21,11 +39,12 @@ public class RNAMLfileTest { } - @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"), "STH", -1, -1); + } }