コード例 #1
0
ファイル: Game1Test.cs プロジェクト: aslone/Team18
 public void DrawTest()
 {
     Game1_Accessor target = new Game1_Accessor(); // TODO: Initialize to an appropriate value
     GameTime gameTime = null; // TODO: Initialize to an appropriate value
     target.Draw(gameTime);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
コード例 #2
0
ファイル: Game1Test.cs プロジェクト: csce3513/Team18
 public void DrawTest_game1()
 {
     Game1_Accessor target = new Game1_Accessor();
     GameTime gameTime = new GameTime();
     target.Draw(gameTime);
     Assert.IsTrue(target.player != null);
 }