private InstallableProduct embeddedActiveMQ = null;
private static final int PORT = 20000;
@Before
public void before() throws IOException, InterruptedException {
embeddedActiveMQ = new EmbeddedActiveMQ(PORT);
embeddedActiveMQ.setup();
embeddedActiveMQ.configure();
embeddedActiveMQ.startup(10000);
}