コード例 #1
0
ファイル: FrameTest.cs プロジェクト: Czhiyong/TestOfBowling
 public void TestScoreNoThrows()
 {
     Frame f = new Frame();
     Assert.AreEqual(0, f.Score);
 }
コード例 #2
0
ファイル: FrameTest.cs プロジェクト: Czhiyong/TestOfBowling
 public void TestAddOneThrow()
 {
     Frame f = new Frame();
     f.Add(5);
     Assert.AreEqual(5,f.Score);
 }