public void ZRFCreatorConstructorTest() { object newGame = null; // TODO: Initialize to an appropriate value ZRFCreator target = new ZRFCreator(newGame); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void BoardTest() { object newGame = null; // TODO: Initialize to an appropriate value ZRFCreator target = new ZRFCreator(newGame); // TODO: Initialize to an appropriate value target.Board(); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
public void BoardSetupTest() { object newGame = null; // TODO: Initialize to an appropriate value ZRFCreator target = new ZRFCreator(newGame); // TODO: Initialize to an appropriate value string expected = string.Empty; // TODO: Initialize to an appropriate value string actual; actual = target.BoardSetup(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void GetCodeTest() { object newGame = null; // TODO: Initialize to an appropriate value ZRFCreator target = new ZRFCreator(newGame); // TODO: Initialize to an appropriate value string[] expected = null; // TODO: Initialize to an appropriate value string[] actual; actual = target.GetCode(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }