Package com.oltpbenchmark

Examples of com.oltpbenchmark.WorkloadConfiguration


    @SuppressWarnings({ "rawtypes", "unchecked" })
    protected void setUp(Class<T> clazz, Class...procClasses) throws Exception {
        super.setUp();
        Class.forName(DB_JDBC);
       
        this.workConf = new WorkloadConfiguration();
        TransactionTypes txnTypes = new TransactionTypes();
        for (int i = 0; i < procClasses.length; i++) {
            assertFalse("Duplicate Procedure '" + procClasses[i] + "'",
                        this.procClasses.contains(procClasses[i]));
            this.procClasses.add(procClasses[i]);
View Full Code Here


import com.oltpbenchmark.WorkloadConfiguration;
import com.oltpbenchmark.types.DatabaseType;

public class MockBenchmark extends BenchmarkModule {
    public MockBenchmark() {
        super("mock", new WorkloadConfiguration(), true);
    }
View Full Code Here

TOP

Related Classes of com.oltpbenchmark.WorkloadConfiguration

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.