从来电者创建方法/答案方法

时间:2013-06-12 21:05:37

标签: c#

我在这里有一个非常奇怪的问题。由于反思,我将一个类指向我的模拟类而不是“真正的”类。 (测试目的)。我想知道是否有任何方法可以在mock中捕获任何方法调用,并根据调用的内容返回我想要的内容。

某种:

一个对象,它调用另一个对象来执行X()并期望一个bool。

由于我已经改变了它所指向的对象的反射,我希望我的模拟在他调用X()时返回“true”(虽然它没有自己实现X())。

换句话说,不是触发“MethodNotFoundException”,而是接收所有内容并相应地做一些逻辑。

2 个答案:

答案 0 :(得分:0)

感谢@millimoose,最好的方法(也很简单)是:

DynamicObject.TryInvoke方法

http://msdn.microsoft.com/en-us/library/system.dynamic.dynamicobject.tryinvoke.aspx

再次感谢!

答案 1 :(得分:0)

您获得的例外情况可能是MissingMethodException。 也许以下控制台应用程序可以指导您实现更具体的实现,但逻辑应该是相同的:

class Program
{
    /// <summary>
    /// a dictionary for holding the desired return values
    /// </summary>
    static Dictionary<string, object> _testReturnValues = new Dictionary<string, object>();

    static void Main(string[] args)
    {
        // adding the test return for method X
        _testReturnValues.Add("X", true);

        var result = ExecuteMethod(typeof(MyClass), "X");
        Console.WriteLine(result);
    }

    static object ExecuteMethod(Type type, string methodName)
    {
        try
        {
            return type.InvokeMember(methodName, BindingFlags.InvokeMethod, null, null, null);
        }
        catch (MissingMethodException e)
        {
            // getting the test value if the method is missing
            return _testReturnValues[methodName];
        }
    }
}

class MyClass
{
    //public static string X() 
    //{
    //    return "Sample return";
    //}
}