public void testQueueSessionCannotCreateTemporaryTopics() throws Exception
{
QueueSession queueSession = getQueueSession();
try
{
queueSession.createTemporaryTopic();
fail("expected exception did not occur");
}
catch (javax.jms.IllegalStateException s)
{
// PASS