// Mix it up
Multipliable newCalc = (Multipliable) ProxyUtils.mixinProxy(calc, new Class<?>[]
{Multipliable.class}, handler);
// Get the result from the service
int result = newCalc.multiply(args);
// Calculate the expected result (product of arguments)
int expected = this.multiply(args);
// Test