@Test(dataProvider = "parse_client_success_data")
public void parse_client(Class type, String input, Object expected) throws Exception
{
Translator t = _source.getByType(type);
Object actual = t.parseClient(input, _messagesSource.getValidationMessages(Locale.ENGLISH));
assertEquals(actual, expected);
}
@DataProvider(name = "parse_client_failure_data")