Ejemplo n.º 1
0
        public void GetNotNullChar_WhenNotEmpty_ReturnsTrue()
        {
            char   expected   = 'a';
            string testString = expected + "   \n\t";

            Assert.Equal(expected, reader.GetNotNullChar(testString));
        }