Package com.oltpbenchmark.util

Examples of com.oltpbenchmark.util.RandomGenerator


        loader.load();
       
        SEATSProfile orig = loader.profile;
        assertNotNull(orig);
       
        SEATSProfile copy = new SEATSProfile(this.benchmark, new RandomGenerator(0));
        assert(copy.airport_histograms.isEmpty());
       
        List<Worker> workers = this.benchmark.makeWorkers(false);
        SEATSWorker worker = (SEATSWorker)workers.get(0);
        copy.loadProfile(worker);
View Full Code Here


       
        AuctionMarkProfile orig = loader.profile;
        assertNotNull(orig);
        assertFalse(orig.users_per_itemCount.isEmpty());
       
        AuctionMarkProfile copy = new AuctionMarkProfile(this.benchmark, new RandomGenerator(0));
        assertTrue(copy.users_per_itemCount.isEmpty());
       
        List<Worker> workers = this.benchmark.makeWorkers(false);
        AuctionMarkWorker worker = (AuctionMarkWorker)workers.get(0);
        copy.loadProfile(worker);
View Full Code Here

TOP

Related Classes of com.oltpbenchmark.util.RandomGenerator

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.