}
@Test(dependsOnMethods = {"connect"})
public void callMultipleArgumentsAndReturnsType() throws IOException, UnsupportedWampActionException, TimeoutException, CallException{
SomeObject obj = new SomeObject();
obj.setFieldOne("b");
obj.setFieldTwo(2);
WampArguments msg = wamp.simpleCall("echo", "a", 45, obj, "a");
assertEquals( "a" , msg.nextObject(String.class) );
assertEquals( 45 , msg.nextObject(Integer.class).intValue() );