示例#1
0
        public void Problem1832_Tests_1()
        {
            string text = "thequickbrownfoxjumpsoverthelazydog";
            bool   act  = Problem1832.CheckIfPangram(text);

            Assert.True(act);
        }
示例#2
0
        public void Problem1832_Tests_3()
        {
            string text = "";
            bool   act  = Problem1832.CheckIfPangram(text);

            Assert.False(act);
        }