Package net.sf.joafip.btreeplus.entity.mock

Examples of net.sf.joafip.btreeplus.entity.mock.MockPageRecordable


  }

  public void testSetParentPage() throws HeapException {
    final LeafPage leafPage = new LeafPage(0, true);
    leafPage.setPageRecord(PAGE_RECORD);
    final IPageRecordable parentPage = new MockPageRecordable();
    final int inParentIndex = 5;
    leafPage.setParentPage(parentPage, inParentIndex);
    assertEquals("bad parent page", parentPage, leafPage.getParentPage());
    assertEquals("bad in parent index", inParentIndex,
        leafPage.getInParentIndex());
View Full Code Here

TOP

Related Classes of net.sf.joafip.btreeplus.entity.mock.MockPageRecordable

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.