Controllers and Fxml nicely refactored, tests still broken #story[463]

This commit is contained in:
Peter
2017-03-29 14:59:37 +13:00
parent 4a6978ff79
commit a95d030817
21 changed files with 225 additions and 424 deletions
@@ -14,7 +14,7 @@ public class ConfigParserTest {
@Before
public void initializeParser() throws Exception {
cp = new ConfigParser("/config.xml");
cp = new ConfigParser("/config/config.xml");
}
@Test
@@ -18,7 +18,7 @@ public class CourseParserTest {
@Before
public void initializeParser() throws Exception {
cp = new CourseParser("/course.xml");
cp = new CourseParser("/config/course.xml");
}
@Test
@@ -16,7 +16,7 @@ public class TeamsParserTest {
private TeamsParser tp;
@Before
public void readFile() {
tp = new TeamsParser("/teams.xml");
tp = new TeamsParser("/config/teams.xml");
}
@Test