NO-JIRA Adding missing @RunWith annotation on tests
This commit is contained in:
parent
d498cf4cc6
commit
8f9bab6a19
|
@ -37,8 +37,10 @@ import org.apache.activemq.artemis.tests.unit.core.server.impl.fakes.FakePostOff
|
|||
import org.apache.activemq.artemis.utils.critical.EmptyCriticalAnalyzer;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.Parameterized;
|
||||
|
||||
@RunWith(Parameterized.class)
|
||||
public class DeleteMessagesOnStartupTest extends StorageManagerTestBase {
|
||||
|
||||
ArrayList<Long> deletedMessage = new ArrayList<>();
|
||||
|
|
|
@ -24,6 +24,7 @@ import org.apache.activemq.artemis.tests.integration.stomp.util.StompClientConne
|
|||
import org.apache.activemq.artemis.tests.integration.stomp.util.StompClientConnectionFactory;
|
||||
import org.apache.felix.resolver.util.ArrayMap;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.Parameterized;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
@ -32,6 +33,7 @@ import java.util.Collection;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@RunWith(value = Parameterized.class)
|
||||
public class StompTestPropertiesInterceptor extends StompTestBase {
|
||||
|
||||
@Parameterized.Parameters(name = "{0}")
|
||||
|
|
|
@ -48,11 +48,13 @@ import org.junit.After;
|
|||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.Parameterized;
|
||||
|
||||
/**
|
||||
* Testing Stomp version 1.2 functionalities
|
||||
*/
|
||||
@RunWith(Parameterized.class)
|
||||
public class StompV12Test extends StompTestBase {
|
||||
|
||||
private static final transient IntegrationTestLogger log = IntegrationTestLogger.LOGGER;
|
||||
|
|
Loading…
Reference in New Issue