@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(null, input, null);
assertEquals(actual, expected);
}
@DataProvider