JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / datamodel / RangeElementsIteratorTest.java
index 9d14822..37d79ff 100644 (file)
@@ -120,8 +120,10 @@ public class RangeElementsIteratorTest
    * when alignment has hidden cols
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { NoSuchElementException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { NoSuchElementException.class })
   public void testLastNextWithHidden() throws NoSuchElementException
   {
     Iterator<Integer> it = hiddenCols.getVisibleColsIterator(0, 3);
@@ -137,8 +139,10 @@ public class RangeElementsIteratorTest
    * when alignment has no hidden cols
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { NoSuchElementException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { NoSuchElementException.class })
   public void testLastNextNoHidden() throws NoSuchElementException
   {
     HiddenColumns test = new HiddenColumns();
@@ -155,8 +159,10 @@ public class RangeElementsIteratorTest
    * when alignment has hidden cols at start
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { NoSuchElementException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { NoSuchElementException.class })
   public void testLastNextStartHidden() throws NoSuchElementException
   {
     Iterator<Integer> it3 = hiddenColsAtStart.getVisibleColsIterator(0, 6);
@@ -172,8 +178,10 @@ public class RangeElementsIteratorTest
    * when alignment has hidden cols at end
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { NoSuchElementException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { NoSuchElementException.class })
   public void testLastNextEndHidden() throws NoSuchElementException
   {
     Iterator<Integer> it4 = hiddenCols.getVisibleColsIterator(0, 4);
@@ -188,8 +196,10 @@ public class RangeElementsIteratorTest
    * Test calls to remove throw UnsupportedOperationException
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { UnsupportedOperationException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { UnsupportedOperationException.class })
   public void testRemove() throws UnsupportedOperationException
   {
     Iterator<Integer> it = hiddenCols.getVisibleColsIterator(0, 3);