Package net.sf.katta.tool.loadtest.query

Examples of net.sf.katta.tool.loadtest.query.AbstractQueryExecutor


public class LoadTestNodeOperationTest extends AbstractNodeOperationMockTest {

  @Test
  public void testNodeOperation() throws Exception {
    AbstractQueryExecutor queryExecutor = mock(AbstractQueryExecutor.class);
    String[] queries = new String[] { "a", "b", "c" };
    when(queryExecutor.getQueries()).thenReturn(queries);
    final int queryRate = 10;
    final int runTime = 2000;
    LoadTestNodeOperation nodeOperation = new LoadTestNodeOperation(queryExecutor, queryRate, runTime);
    long startTime = System.currentTimeMillis();
    nodeOperation.execute(_context);
View Full Code Here

TOP

Related Classes of net.sf.katta.tool.loadtest.query.AbstractQueryExecutor

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.