X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2FMCview%2FAtomTest.java;h=ced0761f08955c8f852d3a484fa68c27460876ad;hb=db93a1adcbe0a4eaaf06e0a70ade0d6c5c1961c3;hp=2e6551c4eb16ef7023cfac3c6b7bdc1ab55ab2ef;hpb=ab22918ab8fc67d30dad1fb1ae0f37e51f49df95;p=jalview.git diff --git a/test/MCview/AtomTest.java b/test/MCview/AtomTest.java index 2e6551c..ced0761 100644 --- a/test/MCview/AtomTest.java +++ b/test/MCview/AtomTest.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 MCview; import static org.testng.AssertJUnit.assertEquals; @@ -12,7 +32,7 @@ public class AtomTest * Test the constructor that parses a PDB file format ATOM line. Fields are in * fixed column positions */ - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void testStringConstructor() { Atom a = new Atom( @@ -35,7 +55,7 @@ public class AtomTest * Test the case where occupancy and temp factor are blank - should default to * 1 */ - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void testStringConstructor_blankOccupancyTempFactor() { Atom a = new Atom( @@ -47,7 +67,7 @@ public class AtomTest /** * Parsing non-numeric data as Atom throws an exception */ - @Test(groups ={ "Functional" }) + @Test(groups = { "Functional" }) public void testStringConstructor_malformed() { try @@ -60,4 +80,4 @@ public class AtomTest // expected } } -} \ No newline at end of file +}