System.Tests.StringTests.IsNullOrWhitespace C# (CSharp) Method

IsNullOrWhitespace() private method

private IsNullOrWhitespace ( string value, bool expected ) : void
value string
expected bool
return void
        public static void IsNullOrWhitespace(string value, bool expected)
        {
            Assert.Equal(expected, string.IsNullOrWhiteSpace(value));
        }
StringTests