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

            Assert.AreEqual(expectedResult, actualResult);
        }