使用反射测试(PrivateObject)

时间:2011-12-05 09:03:00

标签: c# .net testing reflection ref

我有一个轻微但相当讨厌的问题。

我正在使用PrivateObject进行一些测试来访问类中的各种方法。一切正常。但是,当方法签名包含“ref”时,ref关键字似乎没有任何效果。

private bool NewDeviceArrivedDeviceAtWorkcenter(ThreadStartArgs args, ref Device deviceAtStation)
{
//..SomeCode
     deviceAtStation = null;
//...Method to test
}

此测试失败..

 [TestMethod]
        public void CheckForDeviceAtWorkcenterNoDeviceFound()
        {
Initialization omitted

var device = new Device();

            var result = accessor.Invoke("NewDeviceArrivedDeviceAtWorkcenter", 
                new []
                    {
                        typeof (ThreadStartArgs), 
                        typeof (Device).MakeByRefType()
                    }, 
                    new object[] 
                    {
                        threadStartArgs, 
                        device
                    });

            Assert.IsNull(device);
}

问题:为什么测试方法中的设备obj没有设置为null?

任何帮助表示赞赏

亲切的问候 卡斯滕

2 个答案:

答案 0 :(得分:1)

返回是通过传递给Invoke的参数数组完成的。

[TestMethod]
public void CheckForDeviceAtWorkcenterNoDeviceFound()
{ 
   //Initialization omitted for publicObject, threadStartArgs, device

   Type[] myTypes = new Type[] {typeof (ThreadStartArgs), 
                                typeof (Device).MakeByRefType() };
   object[] myArgs = new object[] { threadStartArgs, device };
   string sMethod = "NewDeviceArrivedDeviceAtWorkcenter";

   //Invoke method under test
   bool bResult = (bool)publicObject.Invoke(sMethod, myTypes, myArgs);

   Device returnDevice = (Device)myArgs[1];

   Assert.IsNull(returnDevice);
}

答案 1 :(得分:0)

根据this回复,您应该获取要测试的方法的MethodInfo,并使用参数数组调用它。

您是否尝试使用typeof(Device)调用该方法,而没有MakeByRefType()来电?