JAL-1645 source formatting and organise imports
[jalview.git] / test / jalview / viewmodel / styles / ViewStyleTest.java
index 9e259a9..dfb18bc 100644 (file)
@@ -11,7 +11,6 @@ import java.util.Random;
 import org.testng.AssertJUnit;
 import org.testng.annotations.Test;
 
-
 public class ViewStyleTest
 {
 
@@ -30,7 +29,7 @@ public class ViewStyleTest
    * @throws IllegalAccessException
    * @throws IllegalArgumentException
    */
-  @Test(groups ={ "Functional" })
+  @Test(groups = { "Functional" })
   public void testCopyConstructor() throws IllegalArgumentException,
           IllegalAccessException
   {
@@ -47,7 +46,8 @@ public class ViewStyleTest
 
     ViewStyle vs2 = new ViewStyle(vs1);
 
-    for (Field field1 : fields) {
+    for (Field field1 : fields)
+    {
       final Object value1 = field1.get(vs1);
       final Object value2 = field1.get(vs2);
       String msg = "Mismatch in " + field1.getName() + "(" + value1 + "/"
@@ -137,8 +137,8 @@ public class ViewStyleTest
     }
     else
     {
-      AssertJUnit.fail("Unhandled field type (add to test): " + field.getName()
-              + ":" + type);
+      AssertJUnit.fail("Unhandled field type (add to test): "
+              + field.getName() + ":" + type);
     }
   }
 
@@ -165,7 +165,7 @@ public class ViewStyleTest
    * @throws IllegalAccessException
    * @throws IllegalArgumentException
    */
-  @Test(groups ={ "Functional" })
+  @Test(groups = { "Functional" })
   public void testEquals() throws IllegalArgumentException,
           IllegalAccessException
   {