本文整理汇总了C#中TestClass.GetPropertyValue方法的典型用法代码示例。如果您正苦于以下问题:C# TestClass.GetPropertyValue方法的具体用法?C# TestClass.GetPropertyValue怎么用?C# TestClass.GetPropertyValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestClass
的用法示例。
在下文中一共展示了TestClass.GetPropertyValue方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetPropertyValueTest
public void GetPropertyValueTest()
{
var test = new TestClass();
var anon = new { Str = "Test2", Int = 9000, Date = new DateTime(1900, 1, 1) };
test.StringProperty = "Test";
test.IntProperty = 9999;
test.DateTimeProperty = new DateTime(2000, 1, 1);
var stringResult = (string)test.GetPropertyValue("StringProperty");
var intResult = (int)test.GetPropertyValue("IntProperty");
var dateResult = (DateTime)test.GetPropertyValue("DateTimeProperty");
var anonStr = (string)anon.GetPropertyValue("Str");
var anonInt = (int)anon.GetPropertyValue("Int");
var anonDateTime = (DateTime)anon.GetPropertyValue("Date");
Assert.AreEqual<string>(stringResult, "Test");
Assert.AreEqual<int>(intResult, 9999);
Assert.AreEqual<DateTime>(dateResult, new DateTime(2000, 1, 1));
Assert.AreEqual<string>(anonStr, "Test2");
Assert.AreEqual<int>(anonInt, 9000);
Assert.AreEqual<DateTime>(anonDateTime, new DateTime(1900, 1, 1));
}
示例2: GetPropertyValue
public void GetPropertyValue()
{
// Type
var @this = new TestClass {PublicProperty = 1};
TestClass.InternaStaticProperty = 2;
// Exemples
object result1 = @this.GetPropertyValue("PublicProperty"); // return 1;
object result2 = @this.GetPropertyValue("InternaStaticProperty"); // return 2;
// Unit Test
Assert.AreEqual(1, result1);
Assert.AreEqual(2, result2);
}
示例3: GetPropertyValue
public void GetPropertyValue()
{
var obj = new TestClass() { StringProperty = "String Test" };
Assert.That(
obj.GetPropertyValue("StringProperty"),
Is.EqualTo(obj.StringProperty));
}