Exemplo n.º 1
0
        public void TestIsNotStopWord()
        {
            StopList stopList = new StopList();

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

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