JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / datamodel / AllColsIteratorTest.java
index 0dfcc21..3394794 100644 (file)
@@ -30,14 +30,13 @@ import org.testng.annotations.Test;
 public class AllColsIteratorTest
 {
   HiddenColumns hiddenCols;
-  
+
   @BeforeClass(alwaysRun = true)
   public void setup()
   {
     hiddenCols = new HiddenColumns();
     hiddenCols.hideColumns(2, 4);
   }
-  
 
   /*
    * Test iterator iterates through collection correctly
@@ -59,8 +58,10 @@ public class AllColsIteratorTest
    * Test iterator throws NoSuchElementException at end of iteration
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { NoSuchElementException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { NoSuchElementException.class })
   public void testLastNext() throws NoSuchElementException
   {
     AllColsIterator it = new AllColsIterator(0, 3, hiddenCols);
@@ -75,8 +76,10 @@ public class AllColsIteratorTest
    * Test iterator throws UnsupportedOperationException on call to remove
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { UnsupportedOperationException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { UnsupportedOperationException.class })
   public void testRemove() throws UnsupportedOperationException
   {
     AllColsIterator it = new AllColsIterator(0, 3, hiddenCols);