HornetQBootstrapServer bootstrap = new HornetQBootstrapServer(new String[] {});
bootstrap.run();
Assert.assertFalse(DummyBean.started);
KernelDeployment kernelDeployment = bootstrap.deploy(HornetQBootstrapServerTest.beans1);
Assert.assertTrue(DummyBean.started);
bootstrap.undeploy(kernelDeployment);
Assert.assertFalse(DummyBean.started);
bootstrap.shutDown();
}
public void testDeployXml() throws Throwable