public void testInvoke() throws Exception {
CorbaDSIServant dsiServant = new CorbaDSIServant();
IMocksControl control = EasyMock.createNiceControl();
ServerRequest request = EasyMock.createMock(ServerRequest.class);
String opName = "greetMe";
EasyMock.expect(request.operation()).andReturn(opName);
MessageObserver incomingObserver = new TestObserver();
dsiServant.setObserver(incomingObserver);
Map<String, QName> map = new HashMap<String, QName>(2);
// REVISIT: Something is not setup quite right with this test. In