X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fschemes%2FDnaCodonTests.java;h=07ae7bb45b94ea6d493e3fb47bda03a858b5a46c;hb=17e77c3f2949a0729322b4a8d907f3f34b6a9914;hp=6791d7cbfc722fabf4f6c5af84d9408f79789942;hpb=ad15cff29620f960119f80176f1fd443da9f6763;p=jalview.git diff --git a/test/jalview/schemes/DnaCodonTests.java b/test/jalview/schemes/DnaCodonTests.java index 6791d7c..07ae7bb 100644 --- a/test/jalview/schemes/DnaCodonTests.java +++ b/test/jalview/schemes/DnaCodonTests.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) + * Copyright (C) 2015 The Jalview Authors * * This file is part of Jalview. * @@ -20,31 +20,22 @@ */ package jalview.schemes; -import static org.junit.Assert.*; +import static org.testng.AssertJUnit.assertTrue; -import jalview.datamodel.AlignmentI; -import jalview.datamodel.ColumnSelection; -import jalview.datamodel.Sequence; -import jalview.datamodel.SequenceI; - -import java.io.IOException; import java.util.Map; -import java.util.Vector; -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.junit.Test; +import org.testng.annotations.Test; public class DnaCodonTests { - @Test + @Test(groups = { "Functional" }) public void testAmbiguityCodeGeneration() { assertTrue(ResidueProperties.ambiguityCodes.size() > 0); } - @Test + @Test(groups = { "Functional" }) public void testAmbiguityCodon() { for (String ac : ResidueProperties.ambiguityCodes.keySet()) @@ -54,7 +45,7 @@ public class DnaCodonTests } } - @Test + @Test(groups = { "Functional" }) public void regenerateCodonTable() { for (Map.Entry codon : ResidueProperties.codonHash2 @@ -65,19 +56,16 @@ public class DnaCodonTests } } - @Test + @Test(groups = { "Functional" }) public void checkOldCodonagainstNewCodonTable() { // note - this test will be removed once the old codon table (including // Vectors) is removed String additional = "", failtrans = "", differentTr = ""; - for (Object aa : ResidueProperties.codonHash.keySet()) + for (String amacid : ResidueProperties.codonHash.keySet()) { - String amacid = (String) aa; - for (Object codons : ((Vector) ResidueProperties.codonHash - .get(amacid))) + for (String codon : ResidueProperties.codonHash.get(amacid)) { - String codon = (String) codons; String trans = ResidueProperties.codonTranslate(codon); String oldtrans = ResidueProperties._codonTranslate(codon); if (trans == null)