64656667686970717273
public void teamAllocationBasic() throws Exception { Claim cat = getCatastrophic(); Team team = new Team(); executeRules(cat, team); System.out.println(team.getName()); }
72737475767778798081
System.out.println(team.getName()); } public void teamAllocationLongtail1() throws Exception { Claim claim = getBetweenSomeDateLongtail1(); Team team = new Team(); executeRules(claim, team); System.out.println(team.getName()); }
80818283848586878889909192
System.out.println(team.getName()); } public void teamAllocationLongtail2() throws Exception { Claim claim = getBetweenSomeDateLongtail2(); Team team = new Team(); executeRules(claim, team); System.out.println(team.getName()); }