X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fdatamodel%2FRangeElementsIteratorTest.java;h=37d79ff1fb2c79743b56b85308f545f3589690b7;hb=57738a1f3c19b1c3a00bd3ac5108f8cd0af32f99;hp=9d1482299722c53d944c63ef5457ae1d94ef0213;hpb=e7338a61f3ce96dadf44ac80b2b32cc5ba4b94c8;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);