public void BuildFreqTableTest()
        {
            LinkedList <string>      tokens   = null; // TODO: Initialize to an appropriate value
            Dictionary <string, int> expected = null; // TODO: Initialize to an appropriate value
            Dictionary <string, int> actual;

            actual = NlpLogic.BuildFreqTable(tokens);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ArrangeTextTest()
        {
            string text = " i need GPRS Settings"; // TODO: Initialize to an appropriate value

            string[] expected = { "i" };           // TODO: Initialize to an appropriate value
            string[] actual;
            actual = NlpLogic.ArrangeText(text);
            Assert.AreEqual(expected[0].ToString(), actual[0].ToString());
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ListWordsByFreqTest()
        {
            NlpLogic target = new NlpLogic();           // TODO: Initialize to an appropriate value
            Dictionary <string, int> strIntDict = null; // TODO: Initialize to an appropriate value
            Dictionary <string, int> expected   = null; // TODO: Initialize to an appropriate value
            Dictionary <string, int> actual;

            actual = target.ListWordsByFreq(strIntDict);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void ToDictTest()
        {
            NlpLogic target = new NlpLogic();         // TODO: Initialize to an appropriate value

            string[] words = null;                    // TODO: Initialize to an appropriate value
            Dictionary <string, int> expected = null; // TODO: Initialize to an appropriate value
            Dictionary <string, int> actual;

            actual = target.ToDict(words);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public void NlpLogicConstructorTest()
        {
            NlpLogic target = new NlpLogic();

            Assert.Inconclusive("TODO: Implement code to verify target");
        }