2
私は単体テストと私のWebプロジェクトの2つのプロジェクトを持っています。MVCユニットのクッキーテスト
AuthenticationController controller = new AuthenticationController();
ViewResult result = controller.LogOut() as ViewResult;
Assert.IsNotNull(result);
プロジェクトでは、http cookieと承認リクエストを渡します。
LogOutテストを実行しているとき、Cookieを取得すると失敗します。偽のクッキーなどの方法でこれを克服する方法はありますか?
ありがとうございます。
この回答を見てください:http://stackoverflow.com/questions/18098585/moq-mocking-mvc-controllers-response-cookies-clear/18101855#18101855 –
はLogOut' 'の実装を表示します – Nkosi