X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2FMCview%2FAtomTest.java;h=2e6551c4eb16ef7023cfac3c6b7bdc1ab55ab2ef;hb=4e4cd7954b978bfe1ba652e44be2510626efa177;hp=f3375354e076da2884d8a8099511cb77b25e8eeb;hpb=3412b273e964fb1a9d22564b04a5f0c827ec2461;p=jalview.git diff --git a/test/MCview/AtomTest.java b/test/MCview/AtomTest.java index f337535..2e6551c 100644 --- a/test/MCview/AtomTest.java +++ b/test/MCview/AtomTest.java @@ -1,8 +1,9 @@ package MCview; import static org.testng.AssertJUnit.assertEquals; -import org.testng.annotations.Test; + import org.testng.Assert; +import org.testng.annotations.Test; public class AtomTest { @@ -11,7 +12,7 @@ public class AtomTest * Test the constructor that parses a PDB file format ATOM line. Fields are in * fixed column positions */ - @Test + @Test(groups ={ "Functional" }) public void testStringConstructor() { Atom a = new Atom( @@ -34,7 +35,7 @@ public class AtomTest * Test the case where occupancy and temp factor are blank - should default to * 1 */ - @Test + @Test(groups ={ "Functional" }) public void testStringConstructor_blankOccupancyTempFactor() { Atom a = new Atom( @@ -46,7 +47,7 @@ public class AtomTest /** * Parsing non-numeric data as Atom throws an exception */ - @Test + @Test(groups ={ "Functional" }) public void testStringConstructor_malformed() { try