public void SetFirstPropertyValue()
 {
     firstAttributePropertyDescriptor.SetValue(null, "new value");
     Assert.AreEqual("new value", (String)firstAttributePropertyDescriptor.GetValue(null));
     Assert.AreEqual("new value", firstAttribute.Value);
 }