final Object origConvID = acomponent.getConversationID();
Assert.assertNotNull(origConvID);
final ServiceReference<ConversationalService> ref = acomponent.createSelfRef();
Assert.assertNotNull(ref);
final ConversationalService resolvedRef = ref.getService();
Assert.assertNotNull(resolvedRef);
final Object newConvID = resolvedRef.getConversationID();
Assert.assertNotNull(newConvID);
Assert.assertEquals(origConvID, newConvID);
}