X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FAnnotatedPDBFileInputTest.java;fp=test%2Fjalview%2Fio%2FAnnotatedPDBFileInputTest.java;h=f02226e8d7bf271f539fac623ac1a1b7dd5bb6fa;hb=52288466dd1e71946a06fd1e6ea15fa8e652c693;hp=91e816af658260a6804d33582b585c9e01fa2117;hpb=4d7f98a6dd54d9863ba449ec79dcd95d25ed863d;p=jalview.git diff --git a/test/jalview/io/AnnotatedPDBFileInputTest.java b/test/jalview/io/AnnotatedPDBFileInputTest.java index 91e816a..f02226e 100644 --- a/test/jalview/io/AnnotatedPDBFileInputTest.java +++ b/test/jalview/io/AnnotatedPDBFileInputTest.java @@ -33,7 +33,7 @@ public class AnnotatedPDBFileInputTest * * @throws Exception */ - @BeforeMethod(alwaysRun = true) + @BeforeMethod(alwaysRun = true) public void setup() throws Exception { Cache.applicationProperties.setProperty("STRUCT_FROM_PDB", @@ -48,7 +48,7 @@ public class AnnotatedPDBFileInputTest .get(0).getId(); } - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void checkNoDuplicates() { // not strictly a requirement, but strange things may happen if multiple @@ -61,14 +61,13 @@ public class AnnotatedPDBFileInputTest { for (int q = p + 1; q < avec.length; q++) { - Assert.assertNotEquals( - "Found a duplicate annotation row " + avec[p].label, - avec[p], avec[q]); + Assert.assertNotEquals("Found a duplicate annotation row " + + avec[p].label, avec[p], avec[q]); } } } - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void checkPDBannotationSource() { @@ -86,7 +85,7 @@ public class AnnotatedPDBFileInputTest /** * Check sequence features have been added */ - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void checkPDBSequenceFeatures() { /* @@ -120,7 +119,7 @@ public class AnnotatedPDBFileInputTest assertEquals("TYR: 314 1gaqC", sf[295].getDescription()); } - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void checkAnnotationWiring() { assertTrue(al.getAlignmentAnnotation() != null); @@ -169,7 +168,7 @@ public class AnnotatedPDBFileInputTest } - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void testJalviewProjectRelocationAnnotation() throws Exception { @@ -194,7 +193,8 @@ public class AnnotatedPDBFileInputTest sq = sq.getDatasetSequence(); } assertNotNull(sq.getAllPDBEntries()); - assertEquals("Expected only one PDB ID", sq.getAllPDBEntries().size(), 1); + assertEquals("Expected only one PDB ID", + sq.getAllPDBEntries().size(), 1); for (PDBEntry pdbentry : sq.getAllPDBEntries()) { System.err.println("PDB Entry " + pdbentry.getId() + " " @@ -207,8 +207,7 @@ public class AnnotatedPDBFileInputTest && MCview.PDBfile.isCalcIdHandled(ana.getCalcId())) { exists = true; - if (MCview.PDBfile.isCalcIdForFile(ana, - pdbentry.getId())) + if (MCview.PDBfile.isCalcIdForFile(ana, pdbentry.getId())) { found = true; }