X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fschemes%2FDnaCodonTests.java;h=45b56c277b0e6ba27cc8e4f9344b84d0e45586dd;hb=refs%2Fheads%2Freleases%2FRelease_2_10_0_Branch;hp=d84f5677411bd161c69bdbd69271d8399ebd7e6b;hpb=3412b273e964fb1a9d22564b04a5f0c827ec2461;p=jalview.git diff --git a/test/jalview/schemes/DnaCodonTests.java b/test/jalview/schemes/DnaCodonTests.java index d84f567..45b56c2 100644 --- a/test/jalview/schemes/DnaCodonTests.java +++ b/test/jalview/schemes/DnaCodonTests.java @@ -21,19 +21,21 @@ package jalview.schemes; import static org.testng.AssertJUnit.assertTrue; -import org.testng.annotations.Test; + import java.util.Map; +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()) @@ -43,7 +45,7 @@ public class DnaCodonTests } } - @Test + @Test(groups = { "Functional" }) public void regenerateCodonTable() { for (Map.Entry codon : ResidueProperties.codonHash2 @@ -53,43 +55,4 @@ public class DnaCodonTests + codon.getKey() + "\", \"" + codon.getValue() + "\");"); } } - - @Test - public void checkOldCodonagainstNewCodonTable() - { - // note - this test will be removed once the old codon table (including - // Vectors) is removed - String additional = "", failtrans = "", differentTr = ""; - for (String amacid : ResidueProperties.codonHash.keySet()) - { - for (String codon : ResidueProperties.codonHash.get(amacid)) - { - String trans = ResidueProperties.codonTranslate(codon); - String oldtrans = ResidueProperties._codonTranslate(codon); - if (trans == null) - { - additional += "\nOld translation table includes additional codons for " - + amacid + " : " + codon; - } - if (oldtrans == null) - { - failtrans += ("\nold translation routine failed for old translation entry (aa was " - + amacid + " codon was " + codon + ")"); - } - if (!oldtrans.equals(trans)) - { - differentTr += ("\nDifferent translation for old and new routines: " - + amacid - + " " - + codon - + " => expected " - + oldtrans - + " and got " + trans); - } - } - } - assertTrue("" + additional + "\n" + failtrans + "\n" + differentTr, - additional.length() == 0 && failtrans.length() == 0 - && differentTr.length() == 0); - } }