X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fio%2FAnnotatedPDBFileInputTest.java;h=c0251b62cd21eee289cae4840c21607ad73682a4;hb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;hp=91e816af658260a6804d33582b585c9e01fa2117;hpb=06c0f7b7fe744a5c5d054459087bb046a8bae8b8;p=jalview.git diff --git a/test/jalview/io/AnnotatedPDBFileInputTest.java b/test/jalview/io/AnnotatedPDBFileInputTest.java index 91e816a..c0251b6 100644 --- a/test/jalview/io/AnnotatedPDBFileInputTest.java +++ b/test/jalview/io/AnnotatedPDBFileInputTest.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) + * Copyright (C) 2015 The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.io; import static org.testng.AssertJUnit.assertEquals; @@ -33,7 +53,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 +68,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 +81,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 +105,7 @@ public class AnnotatedPDBFileInputTest /** * Check sequence features have been added */ - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void checkPDBSequenceFeatures() { /* @@ -120,7 +139,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 +188,7 @@ public class AnnotatedPDBFileInputTest } - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void testJalviewProjectRelocationAnnotation() throws Exception { @@ -194,7 +213,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 +227,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; }