Esempio n. 1
0
    public void Set_Public_Property_Value_IgnoreCase()
    {
        var t = new TestItem3("Duy");

        t.SetPropertyValue("Description", "Duy");

        Assert.AreEqual(t.Description, "Duy");
    }
Esempio n. 2
0
    public void Set_Protected_Property_Value()
    {
        var t = new TestItem3("Duy");

        t.SetPropertyValue("ProtectedObj", "Duy");

        Assert.AreEqual(t.PropertyValue("ProtectedObj"), "Duy");
    }