Commented out tests in the App

main
Liam Beckett 9 years ago
parent 13697ac673
commit af8617b316

@ -54,13 +54,14 @@ public class App extends Application
e.printStackTrace(); e.printStackTrace();
} }
primaryStage.show(); primaryStage.show();
/* /*
//testing out dataset //testing out dataset
try { try {
currentDataset = new Dataset("test's", Dataset.getExisting); currentDataset = new Dataset("test's", Dataset.getExisting);
}catch (DataException e){ }catch (DataException e){
e.printStackTrace(); e.printStackTrace();
} }
//testing out airport parser //testing out airport parser
try { try {
System.out.println(currentDataset.importAirport("res/Samples/Airports.txt")); System.out.println(currentDataset.importAirport("res/Samples/Airports.txt"));
@ -79,7 +80,13 @@ public class App extends Application
} catch (DataException e) { } catch (DataException e) {
e.printStackTrace(); e.printStackTrace();
} }
*/
try {
System.out.println(currentDataset.importFlight("res/Samples/NZCH-WSSS.csv"));
} catch (DataException e) {
e.printStackTrace();
}
*/
} }
/** /**

Loading…
Cancel
Save