Package com.jdkcn.myblog.web.page.admin

Examples of com.jdkcn.myblog.web.page.admin.Entries


    PaginationSupport<Entry> ps = new PaginationSupport<Entry>(list, list.size());
    expect(entryServiceMock.search(EasyMock.anyObject(Condition.class), EasyMock.capture(captureRange), EasyMock.anyObject(Sorter.class))).andReturn(ps)
        .once();

    Entries entries = new Entries(entryServiceMock);

    replay(entryServiceMock);

    entries.get();

    Assert.assertEquals(1, entries.getEntries().size());
    Assert.assertEquals(Constants.DEFAULT_PAGE_SIZE, captureRange.getValue().getSize());
    verify(entryServiceMock);

  }
View Full Code Here


   
    PaginationSupport<Entry> ps = new PaginationSupport<Entry>(list, list.size());
    expect(entryServiceMock.search(EasyMock.anyObject(Condition.class), EasyMock.capture(captureRange), EasyMock.anyObject(Sorter.class))).andReturn(ps)
    .once();
   
    Entries entries = new Entries(entryServiceMock);
    entries.setP(2);
    entries.setSize(5);
   
    replay(entryServiceMock);
   
    entries.get();
   
    Assert.assertEquals(1, entries.getEntries().size());
    Assert.assertEquals(5, captureRange.getValue().getSize());
    Assert.assertEquals(5, captureRange.getValue().getStart());
    Assert.assertEquals(10, captureRange.getValue().getEnd());
    verify(entryServiceMock);
   
View Full Code Here

TOP

Related Classes of com.jdkcn.myblog.web.page.admin.Entries

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.