/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */

// $Id: RedeployMessageTestCase.java,v 1.1.2.1 2004/11/05 12:55:32 tdiesler Exp $

package org.jboss.test.jbossnet.message;

import junit.framework.Test;

/** Test redeployment of a message centric endpoint.
 *
 * @author Thomas.Diesler@jboss.org
 * @version $Revision: 1.1.2.1 $
 */
public class RedeployMessageTestCase extends MessageTestCase
{

   // Constructors --------------------------------------------------
   public RedeployMessageTestCase(String name)
   {
      super(name);
   }

   /** this is to deploy the whole ear */
   public static Test suite() throws Exception
   {
      return getDeploySetup(RedeployMessageTestCase.class, "jbossnet-message.wsr");
   }

   /** standalone */
   public static void main(String[] args)
   {
      junit.textui.TestRunner.run(RedeployMessageTestCase.class);
   }

}