public void colorTest() { Option target = new Option(); // TODO: Initialize to an appropriate value Color expected = new Color(); // TODO: Initialize to an appropriate value Color actual; target.color = expected; actual = target.color; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void OptionConstructorTest() { Option target = new Option(); Assert.Inconclusive("TODO: Implement code to verify target"); }
public void optionTextTest() { Option target = new Option(); // TODO: Initialize to an appropriate value string expected = string.Empty; // TODO: Initialize to an appropriate value string actual; target.optionText = expected; actual = target.optionText; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void EndEdit() { _cachedCopy = null; IsInEditMode = false; }
public void BeginEdit() { _cachedCopy = DeepCopy(); IsInEditMode = true; }
public QuizOption(Option parameters) : this() { this.parameters = parameters; }