Examples of PerfTestParams


Examples of com.skaringa.perftest.config.PerfTestParams

    suite.comment =
      "This is a sample configuration file for a performance test suite.";
    suite.perftests = new PerfTestParams[5];

    for (int i = 0; i < 5; ++i) {
      PerfTestParams test = new PerfTestParams();
      test.method = "testMethod" + i;
      test.loopCount = 10;
      test.dataSize = 500;
      test.dataType = "full.name.of.class.of.testobject";
      test.randomData = false;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.