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."); }
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"); }
static void Main(string[] args) { GameRun go = new GameRun(); go.GameStart(); }