try {
java.lang.Object value = binding.anyReturn();
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("Remote Exception caught: " + re );
}
Cat cat = new Cat();
cat.setPurr("meow");
PersionCat persion = new PersionCat();
Yarn yarn = new Yarn();
yarn.setColor("green");
persion.setPurr("meow meow");
persion.setColor("blue");
persion.setToy(yarn);
try {
binding.animalIn(cat);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("animalIn Exception caught: " + re );
}
try {
binding.animalInout(new AnimalHolder(cat));
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("animalInout Exception caught: " + re );
}
try {
AnimalHolder value = new AnimalHolder();
binding.animalOut(value);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("animalOut Exception caught: " + re );
}
try {
Animal value = null;
value = binding.animalReturn();
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("animalReturn Exception caught: " + re );
}
try {
binding.catIn(cat);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("catIn Exception caught: " + re );
}
try {
binding.catInout(new CatHolder(cat));
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("catInout Exception caught: " + re );
}
try {
CatHolder value = new CatHolder();
binding.catOut(value);
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("catOut Exception caught: " + re );
}
try {
Cat value = null;
value = binding.catReturn();
} catch (java.rmi.RemoteException re) {
throw new junit.framework.AssertionFailedError("catReturn Exception caught: " + re );
}
try {