X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=test%2Fjalview%2Fschemes%2FDnaCodonTests.java;h=908d07b9f4d0f59d021e316d610118ad390f8e9c;hb=dcfba29a940c44003581f28e6da481450aa86575;hp=ff2f2aa63a75b085f175c7b812b491f9e0d9a17f;hpb=52288466dd1e71946a06fd1e6ea15fa8e652c693;p=jalview.git diff --git a/test/jalview/schemes/DnaCodonTests.java b/test/jalview/schemes/DnaCodonTests.java index ff2f2aa..908d07b 100644 --- a/test/jalview/schemes/DnaCodonTests.java +++ b/test/jalview/schemes/DnaCodonTests.java @@ -22,13 +22,23 @@ package jalview.schemes; import static org.testng.AssertJUnit.assertTrue; +import jalview.gui.JvOptionPane; + import java.util.Map; +import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; public class DnaCodonTests { + @BeforeClass(alwaysRun = true) + public void setUpJvOptionPane() + { + JvOptionPane.setInteractiveMode(false); + JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION); + } + @Test(groups = { "Functional" }) public void testAmbiguityCodeGeneration() { @@ -55,43 +65,4 @@ public class DnaCodonTests + codon.getKey() + "\", \"" + codon.getValue() + "\");"); } } - - @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 (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); - } }