I have a ASP.NET MVC site using Membership Provider. I have trouble testing some functionalities including register a new user.
The ASP.NET website doesn't have a way to delete/remove a registered user, so in my testing project (WatiN with NUnit), I am trying to delete a testing user account by calling Membership.DeleteUser(). Then I realize I cannot use this since I cannot configure the membership provider with web.config in my NUnit project (in visual studio).
How do I configure the membership provider without using ASP.NET?