/**
* Tests the bug reported by STANBOL-727
*/
@Test
public void testIsReadable(){
RuntimeDelegate.setInstance(new RuntimeDelegateImpl());
//NOTE the use of com.sun.* API for unit testing
Class<Form> formClass = com.sun.jersey.api.representation.Form.class;
boolean state = reader.isReadable(formClass, formClass, null, MediaType.APPLICATION_FORM_URLENCODED_TYPE);
Assert.assertFalse(state);
}