X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fdatamodel%2FRangeElementsIteratorTest.java;fp=test%2Fjalview%2Fdatamodel%2FRangeElementsIteratorTest.java;h=37d79ff1fb2c79743b56b85308f545f3589690b7;hb=3459a8a691cb22508d7067f240b7254e588e77d3;hp=9d1482299722c53d944c63ef5457ae1d94ef0213;hpb=5b27f1062b2203c4c31702e205f4c78e1992063e;p=jalview.git diff --git a/test/jalview/datamodel/RangeElementsIteratorTest.java b/test/jalview/datamodel/RangeElementsIteratorTest.java index 9d14822..37d79ff 100644 --- a/test/jalview/datamodel/RangeElementsIteratorTest.java +++ b/test/jalview/datamodel/RangeElementsIteratorTest.java @@ -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 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 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 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 it = hiddenCols.getVisibleColsIterator(0, 3);