*/
public void testClientIDVerificationForSameUser() throws Exception
{
setTestSystemProperty(ClientProperties.QPID_VERIFY_CLIENT_ID, "true");
BrokerDetails broker = getBroker();
try
{
Connection con = new AMQConnection(broker.toString(), "guest", "guest",
"client_id", "test");
Connection con2 = new AMQConnection(broker.toString(), "guest", "guest",
"client_id", "test");
fail("The client should throw a ConnectionException stating the" +
" client ID is not unique");
}