Since you are using mvc, if you create a new project and look in the Account controller's code you will find the following clarification:
The FormsAuthentication type is sealed
and contains static members, so it is
difficult to unit test code that calls
its members. The interface and helper
class below demonstrate how to create
an abstract wrapper around such a type
in order to make the AccountController
code unit testable.
Below this, there are these declarations:
public interface IFormsAuthentication
public class FormsAuthenticationService : IFormsAuthentication
public interface IMembershipService
public class AccountMembershipService : IMembershipService
You may look for implementations in the referred code.