コード例 #1
0
ファイル: StringTests.cs プロジェクト: RingoKam/swcguild
        public void Concat(string a, string b, string expectedResult)
        {
            //Arrange: get your target class
            Strings test = new Strings();

            //Act: Call the method
            string actual = test.Concat(a, b);

            //Assert
            Assert.AreEqual(expectedResult, actual);
        }