gpt4 book ai didi

c# - 单元测试 IInterceptionBehavior

转载 作者:太空宇宙 更新时间:2023-11-03 23:45:02 25 4
gpt4 key购买 nike

我正在尝试测试 IInterceptionBehavior 的实现:

public class LoggingInterceptorBehavior : IInterceptionBehavior
{

public IMethodReturn Invoke(IMethodInvocation input, GetNextInterceptionBehaviorDelegate getNext)
{
var methodBase = input.MethodBase;

/* ... */

return getNext()(input, getNext);
}

public IEnumerable<Type> GetRequiredInterfaces() { /* ... */ }

public bool WillExecute { get { return true; } }
}

我怎样才能创建一个假的 MethodBase

最佳答案

技巧似乎是,相当复杂地,使用反射获取 MethodHandle,然后将其传递到 MethodBase 类的静态方法中:

var methodHandle = dummyClass.GetType().GetMethod("dummyMethod").MethodHandle;

var methodBase = MethodBase.GetMethodFromHandle(methodHandle);

关于c# - 单元测试 IInterceptionBehavior,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27830906/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com