コード例 #1
0
ファイル: TestQ1.cs プロジェクト: romerotg/LeetCodeProblems
        public void TestMethod1(string S, string T, string expected)
        {
            // Arrange
            Q1 question = new Q1();

            // Act
            string actual = question.solution(S, T);

            // Assert
            Assert.AreEqual(expected, actual);
            // CollectionAssert.AreEqual
        }