I am new to unit testing and I wanted to give NUnit a try.
In an ASP.NET Web Project, I can create a new project in my web project solution for unit testing and add a reference to my original project and in NUnit I can load the dll file for my unit testing project to run the tests.
However, i am developing an ASP.NET Website and because an ASP.NET Web Site does not have a dll file, I cannot add a seperate project in my solution which references my website project, and therefore, I was not able to access classes in the main project to test. Even if I decided to leave my tests in my main web site project, I am not able to directly load the dll for the web site in the NUnit Gui (because there isn't any dll file).
I also face a problem when i try to creat Unit Tests for my web site using Visual Studio, don't know if they're related.
Any help would be apreciated.