assertEquals(0, reference.compareTo(new SwappingServiceReferenceProxy()));
}
public void testCompareToDifferentService() throws Exception {
SwappingServiceReferenceProxy proxy = new SwappingServiceReferenceProxy();
proxy.swapDelegates(new MockServiceReference());
try {
reference.compareTo(proxy);
fail("expected CCE");
}
catch (Exception ex) {