@Test
public void testBadSignatureProxy() throws Exception
{
//ResteasyClient client = new ResteasyClient();
ResteasyWebTarget target = client.target(generateBaseUrl());
target.property(KeyRepository.class.getName(), repository);
SigningProxy proxy = target.proxy(SigningProxy.class);
try
{
String output = proxy.bad();
throw new Exception("UNREACHABLE");