コード例 #1
0
ファイル: StringTests.cs プロジェクト: Heather4/swcguild
 public void LongInMiddle(string a, string b, string expected)
 {
     //arrange
     Strings obj = new Strings();
     //act
     string actual = obj.LongInMiddle(a, b);
     //assert
     Assert.AreEqual(expected, actual);
 }
コード例 #2
0
ファイル: StringTests.cs プロジェクト: RingoKam/swcguild
        public void LongInMiddle(string a, string b, string expectedResult)
        {
            //Arrange
            Strings test = new Strings();

            //act
            string actual = test.LongInMiddle(a, b);

            //Assert
            Assert.AreEqual(expectedResult, actual);
        }
コード例 #3
0
ファイル: StringTests.cs プロジェクト: dimitre613/swcguild
 public void LongInTheMiddle(string a, string b, string expResult)
 {
     Strings obj = new Strings();
     string actual = obj.LongInMiddle(a, b);
     Assert.AreEqual(expResult, actual);
 }
コード例 #4
0
        public void LongInMiddle(string a, string b, string expected)
        {
            Strings obj = new Strings();

            string actual = obj.LongInMiddle(a, b);

            Assert.AreEqual(expected, actual);
        }