X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FAnnotationFileIOTest.java;fp=test%2Fjalview%2Fio%2FAnnotationFileIOTest.java;h=3d911e0b67543aa53c987a708f35b4366c58bf47;hb=3412b273e964fb1a9d22564b04a5f0c827ec2461;hp=0e066c28fc03cb97ce1875394bf24ae4c14d65a7;hpb=4bba61a3c701f83bdcb6707c4d9f17a1f5faaa04;p=jalview.git diff --git a/test/jalview/io/AnnotationFileIOTest.java b/test/jalview/io/AnnotationFileIOTest.java index 0e066c2..3d911e0 100644 --- a/test/jalview/io/AnnotationFileIOTest.java +++ b/test/jalview/io/AnnotationFileIOTest.java @@ -20,17 +20,18 @@ */ package jalview.io; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; -import jalview.datamodel.AlignmentI; -import jalview.datamodel.ColumnSelection; -import jalview.io.AnnotationFile.ViewDef; +import static org.testng.AssertJUnit.assertNotNull; +import static org.testng.AssertJUnit.assertTrue; import java.io.File; import java.util.Hashtable; -import org.junit.Test; +import org.testng.Assert; +import org.testng.annotations.Test; + +import jalview.datamodel.AlignmentI; +import jalview.datamodel.ColumnSelection; +import jalview.io.AnnotationFile.ViewDef; public class AnnotationFileIOTest { @@ -84,7 +85,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 +99,8 @@ public class AnnotationFileIOTest * - label for IO class used to write and read back in the data from * f */ + + // @Test public static void testAnnotationFileIO(String testname, File f, File annotFile) { @@ -150,7 +153,7 @@ public class AnnotationFileIOTest { e.printStackTrace(); } - fail("Test " + Assert.fail("Test " + testname + "\nCouldn't complete Annotation file roundtrip input/output/input test for '" + annotFile + "'.");