Beispiel #1
0
        public void TestIsNotStopWord()
        {
            StopList stopList = new StopList();

            Assert.AreEqual(false, stopList.IsStopWord("rock"));
        }
Beispiel #2
0
        public void TestIsStopWord()
        {
            StopList stopList = new StopList();

            Assert.AreEqual(true, stopList.IsStopWord("everyone"));
        }