Package com.pardot.rhombus.util.faker

Examples of com.pardot.rhombus.util.faker.FakeCIndex


    String json = TestHelpers.readFileToString(this.getClass(), "CObjectCQLGeneratorTestData.js");
    CDefinition def = CDefinition.fromJsonString(json);
    Long millistamp = System.currentTimeMillis();
    UUID startingUUID = UUIDs.startOf(millistamp);

    FakeCIndex subject = new FakeCIndex(
        def.getIndexes().get("instance:type"),
        def,
        startingUUID,
        100L,
        50L,
        10L );
    Iterator<Map<String,Object>> masterIt = subject.getMasterIterator(CObjectOrdering.DESCENDING);
    Set<String> idSet = Sets.newHashSet();

    long counter = 0;
    while(masterIt.hasNext()){
      counter++;
View Full Code Here

TOP

Related Classes of com.pardot.rhombus.util.faker.FakeCIndex

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.