1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
//
// PropertyInfoTest.cs - NUnit Test Cases for PropertyInfo
//
// Author:
// Gert Driesen (drieseng@users.sourceforge.net)
//
// (C) 2004 Novell
//
using System;
using System.Reflection;
using NUnit.Framework;
namespace MonoTests.System.Reflection
{
[TestFixture]
public class PropertyInfoTest
{
[Test]
public void GetAccessorsTest()
{
Type type = typeof(TestClass);
PropertyInfo property = type.GetProperty ("ReadOnlyProperty");
MethodInfo[] methods = property.GetAccessors (true);
Assert.AreEqual (1, methods.Length, "GetAccessors#1");
Assert.IsNotNull (methods[0], "GetAccessors#2");
}
#if NET_2_0
public class A<T>
{
public string Property {
get { return typeof (T).FullName; }
}
}
public int? nullable_field;
public int? NullableProperty {
get { return nullable_field; }
set { nullable_field = value; }
}
[Test]
public void NullableTests ()
{
PropertyInfoTest t = new PropertyInfoTest ();
PropertyInfo pi = typeof(PropertyInfoTest).GetProperty("NullableProperty");
pi.SetValue (t, 100, null);
Assert.AreEqual (100, pi.GetValue (t, null));
pi.SetValue (t, null, null);
Assert.AreEqual (null, pi.GetValue (t, null));
}
[Test]
public void Bug77160 ()
{
object instance = new A<string> ();
Type type = instance.GetType ();
PropertyInfo property = type.GetProperty ("Property");
Assert.AreEqual (typeof (string).FullName, property.GetValue (instance, null));
}
#endif
private class TestClass
{
public string ReadOnlyProperty
{
get { return string.Empty; }
}
}
}
}
|