doWhileCondtions = new Stack<TestCondition>();
}
private void addDefaultCondition()
{
TestCondition defaultCond = new TestCondition("Default", EnumCondType.DEFAULT);
TestPath defaultBranch = new TestPath();
defaultBranch.conditions.add(defaultCond);
this.currBranchList.add(0, defaultBranch);
}