Ejemplo n.º 1
0
        public void TestMethod8()
        {
            string         input    = "aaa";
            StringCompares compares = new StringCompares(input);

            Assert.AreEqual("1, 2", compares.FindMatches("aa"));
        }
Ejemplo n.º 2
0
        public void TestMethod9()
        {
            string         input    = "Polly";
            StringCompares compares = new StringCompares(input);

            Assert.AreEqual("1", compares.FindMatches("polly"));
        }
Ejemplo n.º 3
0
        public void TestMethod7()
        {
            string         input    = "Polly put the kettle on, polly put the kettle on, polly put the kettle on we'll all have tea";
            StringCompares compares = new StringCompares(input);

            Assert.AreEqual("90", compares.FindMatches("tea"));
        }