我使用MVC 2與區域。爲了測試路由,我使用MvcContrib。MVCContrib測試與區域路線
這是測試代碼:
[Test]
public void Home()
{
MvcApplication.RegisterRoutes(RouteTable.Routes);
"~/".ShouldMapTo<HomeController>(x => x.Login("Nps"));
}
我不知道如何調用存儲在區域路由定義。 調用AreaRegistration.RegisterAllAreas()不是一個選項,因爲它提供了一個例外。
感謝 勒萬