NUnit: Multiple Test Projects
Currently, I have a couple test projects using NUnit. I have them setup so that I use the startup program to be the NUnit-GUI.exe file. This means that when I click the run button, the NUnit GUI runs, which is great. But NUnit loads the last loaded assembly, and not the current project, at least by default.
I was reading in the documentation and I found that you can pass in a command argument (VS.NET properties, debug, command argument textbox) of the project that you want to load. I added the name of the DLL that I wanted to test in the command argument, and it worked great. This was the parameter that I needed, so when I was debugging, it loaded this project.