X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FAnnotationFileIOTest.java;h=625244d82c5a9b7ef79a89ff8ba42c95fe4bbc8f;hb=dbcd21b91b25d0cb98b1d8957b811cded5171637;hp=3d4e841d10d11306a1df74df62b12906bbbe854c;hpb=18a869338d12b9069496e3e07b994df01ffe78f4;p=jalview.git diff --git a/test/jalview/io/AnnotationFileIOTest.java b/test/jalview/io/AnnotationFileIOTest.java index 3d4e841..625244d 100644 --- a/test/jalview/io/AnnotationFileIOTest.java +++ b/test/jalview/io/AnnotationFileIOTest.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,9 +20,9 @@ */ package jalview.io; -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.AlignmentI; import jalview.datamodel.ColumnSelection; import jalview.io.AnnotationFile.ViewDef; @@ -30,13 +30,13 @@ import jalview.io.AnnotationFile.ViewDef; import java.io.File; import java.util.Hashtable; -import org.junit.Test; +import org.testng.Assert; +import org.testng.annotations.Test; public class AnnotationFileIOTest { - static String TestFiles[][] = - { + static String TestFiles[][] = { { "Test example annotation import/export", "examples/uniref50.fa", "examples/testdata/example_annot_file.jva" }, { "Test multiple combine annotation statements import/export", @@ -51,7 +51,7 @@ public class AnnotationFileIOTest { "Test hiding/showing of insertions on sequence_ref", "examples/uniref50.fa", "examples/testdata/uniref50_seqref.jva" } }; - @Test + @Test(groups = { "Functional" }) public void exampleAnnotationFileIO() throws Exception { for (String[] testPair : TestFiles) @@ -70,7 +70,7 @@ public class AnnotationFileIOTest FormatAdapter rf = new FormatAdapter(); AlignmentI al = rf.readFile(ff, AppletFormatAdapter.FILE, - new IdentifyFile().Identify(ff, AppletFormatAdapter.FILE)); + new IdentifyFile().identify(ff, AppletFormatAdapter.FILE)); // make sure dataset is initialised ? not sure about this for (int i = 0; i < al.getSequencesArray().length; ++i) @@ -84,7 +84,7 @@ public class AnnotationFileIOTest { e.printStackTrace(); } - fail("Couln't read the alignment in file '" + f.toString() + "'"); + Assert.fail("Couln't read the alignment in file '" + f.toString() + "'"); return null; } @@ -98,6 +98,8 @@ public class AnnotationFileIOTest * - label for IO class used to write and read back in the data from * f */ + + // @Test(groups ={ "Functional" }) public static void testAnnotationFileIO(String testname, File f, File annotFile) { @@ -115,13 +117,12 @@ public class AnnotationFileIOTest new AnnotationFile().readAnnotationFile(al, cs, af, FormatAdapter.FILE)); - ViewDef[] v = new ViewDef[1]; AnnotationFile aff = new AnnotationFile(); - v[0] = aff.new ViewDef(null, al.getHiddenSequences(), cs, + ViewDef v = aff.new ViewDef(null, al.getHiddenSequences(), cs, new Hashtable()); String anfileout = new AnnotationFile().printAnnotations( al.getAlignmentAnnotation(), al.getGroups(), - al.getProperties(), v); + al.getProperties(), null, al, v); assertTrue( "Test " + testname @@ -145,13 +146,13 @@ public class AnnotationFileIOTest 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 for '" + annotFile + "'.");