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

IsNullOrEmpty() private method

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