コード例 #1
0
ファイル: StringTests.cs プロジェクト: RingoKam/swcguild
        public void RotateRight2(string str, string expectedResult)
        {
            //arrange
            Strings test = new Strings();

            //Act
            string actual = test.RotateRight2(str);

            //Assert
            Assert.AreEqual(expectedResult, actual);
        }
コード例 #2
0
        public void RotateRight2(string str, string expected)
        {
            Strings obj = new Strings();

            string actual = obj.RotateRight2(str);

            Assert.AreEqual(expected, actual);
        }