X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=test%2Fjalview%2Fdatamodel%2FAllRowsIteratorTest.java;fp=test%2Fjalview%2Fdatamodel%2FAllRowsIteratorTest.java;h=9f4c65b644667ca2caff724758549d5e72b62182;hb=3459a8a691cb22508d7067f240b7254e588e77d3;hp=90ed891011e13b3829f63e9825379a5339e3c638;hpb=5b27f1062b2203c4c31702e205f4c78e1992063e;p=jalview.git diff --git a/test/jalview/datamodel/AllRowsIteratorTest.java b/test/jalview/datamodel/AllRowsIteratorTest.java index 90ed891..9f4c65b 100644 --- a/test/jalview/datamodel/AllRowsIteratorTest.java +++ b/test/jalview/datamodel/AllRowsIteratorTest.java @@ -69,8 +69,10 @@ public class AllRowsIteratorTest * Test iterator throws NoSuchElementException at end of iteration */ @Test( - groups = { "Functional" }, - expectedExceptions = { NoSuchElementException.class }) + groups = + { "Functional" }, + expectedExceptions = + { NoSuchElementException.class }) public void testLastNext() throws NoSuchElementException { AllRowsIterator it = new AllRowsIterator(0, 3, al); @@ -85,15 +87,16 @@ public class AllRowsIteratorTest * Test iterator throws UnsupportedOperationException on call to remove */ @Test( - groups = { "Functional" }, - expectedExceptions = { UnsupportedOperationException.class }) + groups = + { "Functional" }, + expectedExceptions = + { UnsupportedOperationException.class }) public void testRemove() throws UnsupportedOperationException { AllRowsIterator it = new AllRowsIterator(0, 3, al); it.remove(); } - /* * Hide sequences between start and end */