24 lines
497 B
Java
24 lines
497 B
Java
|
|
|
|
|
|
public class TestCompetition {
|
|
|
|
Competition competition;
|
|
|
|
public TestCompetition() {
|
|
competition = new Competition();
|
|
|
|
competition.newRunner("a");
|
|
competition.newRunner("b");
|
|
competition.newRunner("c");
|
|
competition.newRunner("d");
|
|
competition.newRunner("e");
|
|
competition.newRunner("f");
|
|
competition.newRunner("g");
|
|
competition.newRunner("a");
|
|
|
|
competition.simulate();
|
|
}
|
|
|
|
}
|