Package org.apache.james.mailbox

Examples of org.apache.james.mailbox.SearchQuery


        assertFalse(it4.hasNext());
    }
   
    @Test
    public void testSearchSizeLessThan() throws Exception {
        SearchQuery q2 = new SearchQuery();
        q2.andCriteria(SearchQuery.sizeLessThan(200));
        Iterator<Long> it4 = index.search(null, mailbox, q2);
        assertEquals(2, it4.next().longValue(), 1);
        assertEquals(3, it4.next().longValue(), 1);

        assertFalse(it4.hasNext());
View Full Code Here


    }
   
   
    @Test
    public void testSearchSizeGreaterThan() throws Exception {
        SearchQuery q2 = new SearchQuery();
        q2.andCriteria(SearchQuery.sizeGreaterThan(6));
        Iterator<Long> it4 = index.search(null, mailbox, q2);
        assertEquals(1, it4.next().longValue(), 1);
        assertEquals(2, it4.next().longValue(), 1);
        assertEquals(3, it4.next().longValue(), 1);
View Full Code Here

TOP

Related Classes of org.apache.james.mailbox.SearchQuery

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.