Ejemplo n.º 1
0
    public void ResetValue()
    {
      JObject o = JObject.Parse("{prop1:'12345!'}");

      JPropertyDescriptor propertyDescriptor1 = new JPropertyDescriptor("prop1", typeof(string));
      propertyDescriptor1.ResetValue(o);

      Assert.AreEqual("12345!", (string)o["prop1"]);
    }
Ejemplo n.º 2
0
    public void GetValue()
    {
      JObject o = JObject.Parse("{prop1:'12345!',prop2:[1,'two','III']}");

      JPropertyDescriptor prop1 = new JPropertyDescriptor("prop1", typeof(string));
      JPropertyDescriptor prop2 = new JPropertyDescriptor("prop2", typeof(JArray));

      Assert.AreEqual("12345!", ((JValue) prop1.GetValue(o)).Value);
      Assert.AreEqual(o["prop2"], prop2.GetValue(o));
    }
Ejemplo n.º 3
0
        public void SetValue()
        {
            JObject o = JObject.Parse("{prop1:'12345!'}");

            JPropertyDescriptor propertyDescriptor1 = new JPropertyDescriptor("prop1");

            propertyDescriptor1.SetValue(o, "54321!");

            Assert.AreEqual("54321!", (string)o["prop1"]);
        }
Ejemplo n.º 4
0
    public void PropertyType()
    {
      JPropertyDescriptor propertyDescriptor1 = new JPropertyDescriptor("prop1", typeof(string));

      Assert.AreEqual(typeof(string), propertyDescriptor1.PropertyType);
    }
Ejemplo n.º 5
0
    public void IsReadOnly()
    {
      JPropertyDescriptor propertyDescriptor1 = new JPropertyDescriptor("prop1", typeof(string));

      Assert.AreEqual(false, propertyDescriptor1.IsReadOnly);
    }
Ejemplo n.º 6
0
        public void PropertyType()
        {
            JPropertyDescriptor propertyDescriptor1 = new JPropertyDescriptor("prop1");

            Assert.AreEqual(typeof(object), propertyDescriptor1.PropertyType);
        }