vote up -1 vote down star

What are the features necessary for a tool to have, for testing JMS Queues.

flag

67% accept rate

2 Answers

vote up 0 vote down check

Are you looking to test the JMS queue implementations, or your client code surrounding this ?

If the latter, then you may want to mock out the queue implementation for simplicity/speed etc. and use a framework like JMock. This will allow you to substitute for your JMS implementation and study/regression test the behaviour of your code that interfaces against your JMS implementation.

(If I'm using a well-known (i.e. well written/respected provenance) JMS implementation, my focus would be on checking my code rather than the 3rd-party. However you should have some integration test harnesses as well)

link|flag
Im looking for functional and stress testing JMS Queue implementations – madhu May 6 at 11:38
vote up 0 vote down

Maybe you want to look into a queue or a topic?

http://www.hermesjms.com/confluence/display/HJMS/Home

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.