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