JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / datamodel / VisibleRowsIteratorTest.java
index 4a021c5..32c6b2d 100644 (file)
@@ -137,8 +137,10 @@ public class VisibleRowsIteratorTest
    * when alignment has hidden rows
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { NoSuchElementException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { NoSuchElementException.class })
   public void testLastNextWithHidden() throws NoSuchElementException
   {
     VisibleRowsIterator it = new VisibleRowsIterator(0, 3, al);
@@ -154,8 +156,10 @@ public class VisibleRowsIteratorTest
    * when alignment has no hidden rows
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { NoSuchElementException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { NoSuchElementException.class })
   public void testLastNextNoHidden() throws NoSuchElementException
   {
     VisibleRowsIterator it = new VisibleRowsIterator(0, 3, al3);
@@ -171,8 +175,10 @@ public class VisibleRowsIteratorTest
    * when alignment has hidden rows at start
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { NoSuchElementException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { NoSuchElementException.class })
   public void testLastNextStartHidden() throws NoSuchElementException
   {
     VisibleRowsIterator it = new VisibleRowsIterator(0, 3, al2);
@@ -188,8 +194,10 @@ public class VisibleRowsIteratorTest
    * when alignment has hidden rows at end
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { NoSuchElementException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { NoSuchElementException.class })
   public void testLastNextEndHidden() throws NoSuchElementException
   {
     VisibleRowsIterator it = new VisibleRowsIterator(0, 4, al);
@@ -204,8 +212,10 @@ public class VisibleRowsIteratorTest
    * Test calls to remove throw UnsupportedOperationException
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { UnsupportedOperationException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { UnsupportedOperationException.class })
   public void testRemove() throws UnsupportedOperationException
   {
     VisibleRowsIterator it = new VisibleRowsIterator(0, 3, al);