@Test
public void runSimulator() throws Throwable {
File jsonFile = new File(getClass().getResource("test-simulator.json").toURI());
SimulationPlanner planner = new SimulationPlanner();
SimulationPlan plan = planner.create(jsonFile);
Simulator simulator = new Simulator();
simulator.run(plan);
}