Ejemplo n.º 1
0
 public void Whitespace()
 {
     Assert.IsNull(SrkStringExtensions.NullIfEmptyOrWhitespace("   \t\r\n"));
 }
Ejemplo n.º 2
0
            public void TextTrim()
            {
                string value = " hello ";

                Assert.AreEqual("hello", SrkStringExtensions.NullIfEmptyOrWhitespace(value, true));
            }
Ejemplo n.º 3
0
 public void Null()
 {
     Assert.IsNull(SrkStringExtensions.NullIfEmptyOrWhitespace(null));
 }