@Test(expectedExceptions = ValidationException.class)
@SpecAssertion(section = "5.1.2", id = "a")
public void testUnexpectedType() throws Exception {
String methodName = "setName";
Object object = new Address();
Method method = Address.class.getMethod( methodName, String.class );
Object[] parameterValues = new Object[] { "S" };
executableValidator.validateParameters( object, method, parameterValues );
}