mirror of https://github.com/apache/activemq.git
test case for https://issues.apache.org/activemq/browse/AMQ-2203 - start=false
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@983035 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
144a362aee
commit
34dcc17aa3
|
@ -0,0 +1,17 @@
|
|||
package org.apache.activemq.xbean;
|
||||
|
||||
import java.net.URI;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.apache.activemq.broker.BrokerFactory;
|
||||
import org.apache.activemq.broker.BrokerService;
|
||||
|
||||
public class XBeanStartFalseTest extends TestCase {
|
||||
|
||||
public void testStartFalse() throws Exception {
|
||||
BrokerService broker = BrokerFactory.createBroker(new URI("xbean:org/apache/activemq/xbean/activemq2.xml"));
|
||||
assertFalse("Broker is started", broker.isStarted());
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue