@Test(expected = IOException.class)
public void testInvalidDestFile() throws Exception {
AgentOptions options = new AgentOptions();
options.setDestfile(folder.newFolder("folder").getAbsolutePath());
IRuntime runtime = new StubRuntime();
LocalController controller = new LocalController();
// Startup should fail as the file can not be created:
controller.startup(options, runtime);
}