* @throws Exception
*/
@Test
public void testProxy691() throws Exception
{
ResteasyClient client = new ResteasyClientBuilder().build();
ResteasyWebTarget target = client.target(generateBaseUrl());
MyFormProxy proxy = target.proxy(MyFormProxy.class);
proxy.post(null);
client.close();
}