public void KeyTest()
 {
     NonCascadingDropDownNameValue target = new NonCascadingDropDownNameValue(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.Key = expected;
     actual = target.Key;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void NonCascadingDropDownNameValueConstructorTest2()
 {
     NonCascadingDropDownNameValue target = new NonCascadingDropDownNameValue();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void NonCascadingDropDownNameValueConstructorTest()
 {
     string key = string.Empty; // TODO: Initialize to an appropriate value
     string value = string.Empty; // TODO: Initialize to an appropriate value
     bool defaultValue = false; // TODO: Initialize to an appropriate value
     NonCascadingDropDownNameValue target = new NonCascadingDropDownNameValue(key, value, defaultValue);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }