Class InboundChannelAdapterTest<A extends AbstractInboundChannelAdapter>
- java.lang.Object
-
- com.azure.spring.integration.test.support.InboundChannelAdapterTest<A>
-
public abstract class InboundChannelAdapterTest<A extends AbstractInboundChannelAdapter> extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected A
adapter
protected String
consumerGroup
protected String
destination
-
Constructor Summary
Constructors Constructor Description InboundChannelAdapterTest()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description A
getAdapter()
String
getConsumerGroup()
String
getDestination()
void
sendAndReceive()
void
setAdapter(A adapter)
void
setConsumerGroup(String consumerGroup)
void
setDestination(String destination)
abstract void
setUp()
-
-
-
Field Detail
-
adapter
protected A extends AbstractInboundChannelAdapter adapter
-
consumerGroup
protected String consumerGroup
-
destination
protected String destination
-
-
Method Detail
-
sendAndReceive
@Test public void sendAndReceive() throws InterruptedException
- Throws:
InterruptedException
-
setUp
@BeforeEach public abstract void setUp()
-
getAdapter
public A getAdapter()
-
setAdapter
public void setAdapter(A adapter)
-
getConsumerGroup
public String getConsumerGroup()
-
setConsumerGroup
public void setConsumerGroup(String consumerGroup)
-
getDestination
public String getDestination()
-
setDestination
public void setDestination(String destination)
-
-