Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hao yan committed Jul 9, 2012
1 parent fc9f240 commit 6007b82
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions src/test/java/com/kamikaze/test/PForDeltaTestKamikazeTest.java
Expand Up @@ -188,21 +188,4 @@ public void testImmutableSet() throws IOException{
assertEquals(DocIdSetIterator.NO_MORE_DOCS,dsRegualIt.advance(50));
assertEquals(DocIdSetIterator.NO_MORE_DOCS,dsImmutableIt.advance(50));
}

// @Test
// public void testImmutableSet() throws IOException{
// int[] data = new int[]{20,30,40};
// ImmutableIntArrayDocIdSet dsImmutable = new
// ImmutableIntArrayDocIdSet(data);
// IntArrayDocIdSet dsRegular = new IntArrayDocIdSet();
// dsRegular.addDocs(data, 0, data.length);
// DocIdSetIterator dsImmutableIt = dsImmutable.iterator();
// DocIdSetIterator dsRegualIt = dsRegular.iterator();
// assertEquals(20, dsRegualIt.advance(0));
// assertEquals(20, dsImmutableIt.advance(0));
// assertEquals(30, dsRegualIt.advance(29));
// assertEquals(30, dsImmutableIt.advance(29));
// assertEquals(DocIdSetIterator.NO_MORE_DOCS,dsRegualIt.advance(50));
// assertEquals(DocIdSetIterator.NO_MORE_DOCS,dsImmutableIt.advance(50));
// }
}

0 comments on commit 6007b82

Please sign in to comment.