The test https://github.com/jdanekrh/jms-reproducers/blob/master/src/test/java/org/apache/activemq/artemis/tests/integration/jms/jms2client/JmsContextTest.java passes with Core, is skipped on OpenWire (because that is not a JMS 2.0 client) and fails on AMQP protocol (with qpid-jms-client as the JMS library).
@Test(expected = JMSRuntimeException.class) public void testInvalidSessionModesValueMinusOne() { context.createContext(-1); } @Test(expected = JMSRuntimeException.class) public void testInvalidSessionModesValue4() { context.createContext(4); }
with exception
java.lang.AssertionError: Expected exception: javax.jms.JMSRuntimeException
- is caused by
-
QPIDJMS-312 Loading...