コード例 #1
0
ファイル: GameRunTest.cs プロジェクト: dataartisan/Project2C
 public void GetLogTest()
 {
     string name = string.Empty; // TODO: Initialize to an appropriate value
     GameRun target = new GameRun(name); // TODO: Initialize to an appropriate value
     string actual;
     actual = target.GetLog;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
コード例 #2
0
ファイル: GameRunTest.cs プロジェクト: dataartisan/Project2C
 public void GameRunConstructorTest()
 {
     string name = string.Empty; // TODO: Initialize to an appropriate value
     GameRun target = new GameRun(name);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: dataartisan/Project2C
 static void Main(string[] args)
 {
     GameRun go = new GameRun();
       go.GameStart();
 }