public void testConstantsInStack() throws Exception {
runTask(new kilim.test.ex.ExYieldConstants(0));
}
public static void runTask(String taskClassName, int testCase) throws Exception {
ExYieldBase task;
task = (ExYieldBase) (Class.forName(taskClassName).newInstance());
task.testCase = testCase;
runTask(task);
}