public void TextTrim() { string value = " hello "; Assert.AreEqual("hello", SrkStringExtensions.NullIfEmpty(value, true)); }
public void Empty() { Assert.IsNull(SrkStringExtensions.NullIfEmpty("")); }
public void Whitespace() { Assert.IsNotNull(SrkStringExtensions.NullIfEmpty(" \t\r\n")); }
public void Null() { Assert.IsNull(SrkStringExtensions.NullIfEmpty(null)); }