Called super.setUp and super.tearDown. To ensure auto fail is called.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@367489 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Adrian T. Co 2006-01-10 05:21:19 +00:00
parent a9e047d92e
commit aa7435064a
1 changed files with 2 additions and 0 deletions

View File

@ -103,6 +103,7 @@ public class JmsTestSupport extends CombinationTestSupport {
}
protected void setUp() throws Exception {
super.setUp();
broker = createBroker();
broker.start();
factory = createConnectionFactory();
@ -119,6 +120,7 @@ public class JmsTestSupport extends CombinationTestSupport {
}
}
broker.stop();
super.tearDown();
}
protected void safeClose(Connection c) {