This is simple java project which start/stop iphone simulator with concrete application.
This project can be useful when you are using it together with Monkey talk for your integration tests.
Configure your simulator path and app name through SimulatorConfig and start/stop executor.
SimulatorConfig config = new SimulatorConfig();
config.setAppName("Test");
config.setAppPath("/Users/mikel/workspace/test");
IphoneSimExecutor executor = IphoneSimExecutor.getInstance(config);
executor.start();