public void CheckConvertFromStringEmptyTest() { FormatterUpperCase formatter = new FormatterUpperCase(); Assert.IsNull(formatter.ConvertFromString(String.Empty)); }
public void CheckConvertFromStringNullTest() { FormatterUpperCase formatter = new FormatterUpperCase(); Assert.IsNull(formatter.ConvertFromString(null)); }