获取 System.MissingMethodException,找不到方法:'Void RouteBuilder.set_Item()
Get["/foo"] = parameters => { return Bar(Request);};
从浏览器调用时运行良好,但在使用此设置进行测试时失败
var browser = new Browser(with =>
{
with.Module<Foobar>();
}
var response = brower.Get("/Foo", with => {with.HttpRequest();});
任何线索为什么用于测试的 Routebuilder 不会选择这条路线?