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;