I have a class library assembly and some test code. Because the test code needs to peek at the internals of the the class, it needs to be part of the assembly and because I don't want to have it run all by it's self, it needs have something public so that a different assembly can invoke it. This ends up tacking on some code that shouldn't be there to the main assembly.
What I'd like is to place all the test code in the other assembly and somehow grant it privileges to access internals of the class. I don't need this to be part of the final product, just as part of the debug/private builds.
Is that possible?