@Test
public void parse_client_for_null_value_returns_null_and_bypasses_events_and_translator() throws Exception
{
ComponentResources resources = mockComponentResources();
FieldTranslator translator = mockFieldTranslator();
NullFieldStrategy nullFieldStrategy = mockNullFieldStrategy();
String clientValue = "";
train_replaceFromClient(nullFieldStrategy, "");
ignoreEvent(resources, EventConstants.PARSE_CLIENT, clientValue);
expect(translator.parse(clientValue)).andReturn("");
replay();
FieldValidationSupport support = new FieldValidationSupportImpl(typeCoercer);