JAL-1645 source formatting and organise imports
[jalview.git] / test / jalview / analysis / RnaTest.java
index 3676e0b..b97a912 100644 (file)
@@ -8,9 +8,10 @@ import jalview.analysis.SecStrConsensus.SimpleBP;
 import java.util.Vector;
 
 import org.testng.annotations.Test;
+
 public class RnaTest
 {
-  @Test(groups ={ "Functional" })
+  @Test(groups = { "Functional" })
   public void testGetSimpleBPs() throws WUSSParseException
   {
     String rna = "([{})]"; // JAL-1081 example
@@ -28,7 +29,7 @@ public class RnaTest
     assertEquals(5, bps.get(2).bp3); // ]
   }
 
-  @Test(groups ={ "Functional" })
+  @Test(groups = { "Functional" })
   public void testGetSimpleBPs_unmatchedOpener()
   {
     String rna = "(([{})]";
@@ -42,7 +43,7 @@ public class RnaTest
     }
   }
 
-  @Test(groups ={ "Functional" })
+  @Test(groups = { "Functional" })
   public void testGetSimpleBPs_unmatchedCloser()
   {
     String rna = "([{})]]";