verify("echoBase64", input, e);
}
}
{
Hex input = new Hex("3344");
try {
output = binding.echoHexBinary(input.getBytes());
verify("echoHexBinary", input, output);
} catch (Exception e) {
verify("echoHexBinary", input, e);
}
}
{
Date input = new Date();
try {
output = binding.echoDate(input);
verify("echoDate", input, output);
} catch (Exception e) {
verify("echoDate", input, e);
}
}
{
BigDecimal input = new BigDecimal("3.14159");
try {
output = binding.echoDecimal(input);
verify("echoDecimal", input, output);
} catch (Exception e) {
verify("echoDecimal", input, e);
}
}
{
Boolean input = Boolean.TRUE;
try {
output = new Boolean( binding.echoBoolean(input.booleanValue()));
verify("echoBoolean", input, output);
} catch (Exception e) {
verify("echoBoolean", input, e);
}
}