Ejemplo n.º 1
0
 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.");
 }
Ejemplo n.º 2
0
 public void OptionConstructorTest()
 {
     Option target = new Option();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Ejemplo n.º 3
0
 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.");
 }
Ejemplo n.º 4
0
 public void EndEdit()
 {
     _cachedCopy = null;
     IsInEditMode = false;
 }
Ejemplo n.º 5
0
 public void BeginEdit()
 {
     _cachedCopy = DeepCopy();
     IsInEditMode = true;
 }
 public QuizOption(Option parameters)
     : this()
 {
     this.parameters = parameters;
 }