addTest(suite, "10 activities",
new GenericTest("createProcess", "A10T9seqCnNoImpl"));
tg.put ("title",
"Create processes with variable number of activities");
rootSuite.addTest (new NamedTestGroup (suite, "TestGroup", tg));
/* Examine the performance for creating and starting a process
depending on its structure */
suite = new TestSuite();
addTest(suite, "seriell(A5,T4)",
new GenericTest("createAndStartProcess", "A5T4seqCnNoImpl"));
addTest(suite, "paralell(A5,T4)",
new GenericTest("createAndStartProcess", "A5T4parCnNoImpl"));
addTest(suite, "complex(A5,T6)",
new GenericTest("createAndStartProcess", "A5T6comCnNoImpl"));
tg.put("title", "Create and start processes of different structure");
rootSuite.addTest(new NamedTestGroup(suite, "TestGroup", tg));
/* examine the performance for creating and starting a process
depending on the type of conditions */
suite = new TestSuite ();
addTest(suite, "no conditions",
new GenericTest("createAndStartProcess", "A5T6comCnNoImpl"));
addTest(suite, "f1 == '1' && f2=='2'",
new GenericTest("createAndStartProcess", "A5T6comCyNoImpl"));
tg.put ("title",
"Create and start Processes with different types of "
+ "(un)conditional transitions");
rootSuite.addTest(new NamedTestGroup (suite, "TestGroup", tg));
/* Examine the performance for creating and starting a process
depending on a tool in use */
suite = new TestSuite ();
addTest(suite, "no implementation",
new GenericTest("createAndStartProcess",
"A5T4seqCnNoImpl"));
addTest(suite, "empty script",
new GenericTest("createAndStartProcess",
"A5T4seqCnEmptyScript"));
addTest(suite, "sleep script",
new GenericTest("createAndStartProcess",
"A5T4seqCnSleepScript"));
//addTest(suite, "sleep tool",
// new GenericTest("createAndStartProcess",
// "A5T4seqCnSleepTool"));
tg.put ("title",
"Create and start Processes with different tools assigned "
+ "to activities");
rootSuite.addTest (new NamedTestGroup (suite, "TestGroup", tg));
/* Examine the performance for creating and starting a process
depending on ... */
//suite = new TestSuite ();