assertEquals("Usernames used is different from the one in URL","guest",con.getConnectionURL().getUsername());
assertEquals("Password used is different from the one in URL","guest",con.getConnectionURL().getPassword());
try
{
AMQConnection con2 = (AMQConnection)factory.createConnection("user","pass");
assertEquals("Usernames used is different from the one in URL","user",con2.getConnectionURL().getUsername());
assertEquals("Password used is different from the one in URL","pass",con2.getConnectionURL().getPassword());
}
catch(Exception e)
{