add autofail to yet another test that seems to stop the nightly build

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1159294 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2011-08-18 16:13:34 +00:00
parent 039b646b4e
commit 0d12055926
1 changed files with 3 additions and 2 deletions

View File

@ -16,8 +16,8 @@
*/
package org.apache.activemq.network;
import junit.framework.TestCase;
import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.activemq.TestSupport;
import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.command.ActiveMQQueue;
import org.apache.activemq.xbean.BrokerFactoryBean;
@ -28,7 +28,7 @@ import org.springframework.core.io.Resource;
import javax.jms.*;
public class NetworkRestartTest extends TestCase {
public class NetworkRestartTest extends TestSupport {
private static final Logger LOG = LoggerFactory.getLogger(NetworkRestartTest.class);
@ -111,6 +111,7 @@ public class NetworkRestartTest extends TestCase {
protected void setUp() throws Exception {
setAutoFail(true);
super.setUp();
doSetUp();
}