コード例 #1
0
ファイル: LoopTests.cs プロジェクト: RingoKam/swcguild
 public void CountXXTest(string str, int expected)
 {
     //Arrange
     Loops test = new Loops();
     //Act
     int actual = test.countXX(str);
     //Assert
     Assert.AreEqual(expected, actual);
 }