Package org.exoplatform.services.jcr.impl.core.query.lucene.hits

Examples of org.exoplatform.services.jcr.impl.core.query.lucene.hits.ArrayHits


import junit.framework.TestCase;

public class ArrayHitsTest extends TestCase {

    public void testSkipToDocumentNumberGreaterThanLastMatch() throws Exception {
        ArrayHits hits = new ArrayHits();
        hits.set(1);
        int doc = hits.skipTo(2);
        assertEquals(-1, doc);
    }
View Full Code Here

TOP

Related Classes of org.exoplatform.services.jcr.impl.core.query.lucene.hits.ArrayHits

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.