Skip to content

Commit 75fa0c2

Browse files
ARTEMIS-5812 Enabling other protocols on PagedSNFSoakTest
1 parent 131bdac commit 75fa0c2

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

  • tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/brokerConnection/mirror

tests/soak-tests/src/test/java/org/apache/activemq/artemis/tests/soak/brokerConnection/mirror/PagedSNFSoakTest.java

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,22 @@ public void cleanupServers() {
123123

124124
@Test
125125
@Timeout(240)
126-
public void testRandomProtocol() throws Exception {
126+
public void testAMQP() throws Exception {
127127
testAccumulateAndSend("AMQP");
128128
}
129129

130+
@Test
131+
@Timeout(240)
132+
public void testCORE() throws Exception {
133+
testAccumulateAndSend("CORE");
134+
}
135+
136+
@Test
137+
@Timeout(240)
138+
public void testOPENWIRE() throws Exception {
139+
testAccumulateAndSend("OPENWIRE");
140+
}
141+
130142
private void testAccumulateAndSend(final String protocol) throws Exception {
131143
startDC1();
132144

0 commit comments

Comments
 (0)