AMQ-9152: Make test classes abstract to fix surefire plugin

This commit is contained in:
Christopher L. Shannon (cshannon) 2022-11-01 17:49:35 -04:00
parent 596ee31687
commit ea10d984d0
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ import org.apache.activemq.command.ActiveMQTopic;
* @since 2007-08-10
* @version $Id: ActiveMQTestCase.java 12 2007-08-14 12:02:02Z rke $
*/
public class ActiveMQTestCase extends TestCase
public abstract class ActiveMQTestCase extends TestCase
{
private Context context;
private BrokerService broker;

View File

@ -32,7 +32,7 @@ import org.apache.activemq.command.ActiveMQTopic;
/**
* Useful base class for unit test cases
*/
public class TestSupport extends TestCase {
public abstract class TestSupport extends TestCase {
protected ActiveMQConnectionFactory connectionFactory;
protected boolean topic = true;