3
我使用MvcContrib.TestHelper,並初始化我的控制器是這樣的:使用/嘲諷Request.Url使用時MvcContrib TestHelper
var accountController = new AccountController();
var builder = new TestControllerBuilder();
builder.InitializeController(accountController);
我的問題是,我AccountController
裏面我有:
Request.Url.GetLeftPart(UriPartial.Authority);
但是,這返回爲空。請求是一個代理。
如何從我的單元測試中設置此值?