X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Fjalview%2Fws%2Fjabaws%2FRNAStructExportImport.java;h=ea05b6baaa9115750a7543581380ca01234513b2;hb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;hp=665d9c8eeafa65dce9f365bd6eed4907881a9f43;hpb=bbca0bbcacdbd8ff0a226ca516c099d05eaa5b53;p=jalview.git diff --git a/test/jalview/ws/jabaws/RNAStructExportImport.java b/test/jalview/ws/jabaws/RNAStructExportImport.java index 665d9c8..ea05b6b 100644 --- a/test/jalview/ws/jabaws/RNAStructExportImport.java +++ b/test/jalview/ws/jabaws/RNAStructExportImport.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) - * Copyright (C) $$Year-Rel$$ The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) + * Copyright (C) 2015 The Jalview Authors * * This file is part of Jalview. * @@ -20,9 +20,9 @@ */ package jalview.ws.jabaws; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; +import static org.testng.AssertJUnit.assertNotNull; +import static org.testng.AssertJUnit.assertTrue; + import jalview.datamodel.AlignmentAnnotation; import jalview.datamodel.AlignmentI; import jalview.gui.Jalview2XML; @@ -42,13 +42,14 @@ import java.util.List; import javax.swing.JMenu; import javax.swing.JMenuItem; -import org.junit.AfterClass; -import org.junit.Assert; -import org.junit.BeforeClass; -import org.junit.Test; +import org.testng.Assert; +import org.testng.annotations.AfterClass; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.Test; import compbio.metadata.WrongParameterException; + public class RNAStructExportImport { public static String testseqs = "examples/RF00031_folded.stk"; @@ -61,7 +62,7 @@ public class RNAStructExportImport public static jalview.gui.AlignFrame af = null; - @BeforeClass + @BeforeClass(alwaysRun = true) public static void setUpBeforeClass() throws Exception { @@ -81,7 +82,7 @@ public class RNAStructExportImport if (rnaalifoldws == null) { - fail("no web service"); + Assert.fail("no web service"); } jalview.io.FileLoader fl = new jalview.io.FileLoader(false); @@ -118,7 +119,7 @@ public class RNAStructExportImport } } - @Test + @Test(groups = { "Functional" }) public void testRNAAliFoldValidStructure() { @@ -138,19 +139,21 @@ public class RNAStructExportImport } while (af.getViewport().getCalcManager().isWorking()); AlignmentI orig_alig = af.getViewport().getAlignment(); - for (AlignmentAnnotation aa:orig_alig.getAlignmentAnnotation()) + for (AlignmentAnnotation aa : orig_alig.getAlignmentAnnotation()) { if (alifoldClient.involves(aa)) { if (aa.isRNA()) { - Assert.assertTrue("Did not create valid structure from RNAALiFold prediction", aa.isValidStruc()); + assertTrue( + "Did not create valid structure from RNAALiFold prediction", + aa.isValidStruc()); } } } } - @Test + @Test(groups = { "Functional" }) public void testRNAStructExport() { @@ -210,18 +213,18 @@ public class RNAStructExportImport FormatAdapter.PASTE)); // test for consistency in io - StockholmFileTest.testAlignmentEquivalence(al, al_new); + StockholmFileTest.testAlignmentEquivalence(al, al_new, false); return; } catch (Exception e) { e.printStackTrace(); } - fail("Test " + Assert.fail("Test " + testname + "\nCouldn't complete Annotation file roundtrip input/output/input test."); } - @Test + @Test(groups = { "Functional" }) public void testRnaalifoldSettingsRecovery() { List opts = new ArrayList(); @@ -235,7 +238,7 @@ public class RNAStructExportImport rg.setValue("292"); } catch (WrongParameterException q) { - fail("Couldn't set the temperature parameter " + Assert.fail("Couldn't set the temperature parameter " + q.getStackTrace()); } opts.add(rg);