CheckCellTests.LCSTests.TestCharSequences C# (CSharp) Method

TestCharSequences() private method

private TestCharSequences ( ) : void
return void
        public void TestCharSequences()
        {
            var s1 = "abc";
            var s2 = "abcc";
            Tuple<int, int>[] shouldbe_1_a = { new Tuple<int, int>(0, 0), new Tuple<int, int>(1, 1), new Tuple<int, int>(2, 2) };
            Tuple<int, int>[] shouldbe_2_a = { new Tuple<int, int>(0, 0), new Tuple<int, int>(1, 1), new Tuple<int, int>(2, 3) };
            var shouldbe_1 = new System.Collections.Generic.List<Tuple<int, int>>(shouldbe_1_a);
            var shouldbe_2 = new System.Collections.Generic.List<Tuple<int, int>>(shouldbe_2_a);
            var sss = LongestCommonSubsequence.LCS_Hash_Char(s1, s2);
            Assert.AreEqual(2, sss.Count);
        }