Make your own MbUnit port for NUnitASP
I have had a few folks ask me about providing the source for the
MbUnit port of
NUnitASP, as doing this would require forking the NUnitASP code base it was decided that the code would not be added to the NUnitASP project. The good news is, Jim has made a lot of changes that means for the next release you a port can be created and added to the code base with out a fork risk, or you can port a later verson to suit your needs.
- To do this first download a NUnitASP release, don't obtain the source from CVS unless you get a later branch (due to the changes mentioned previously) its just as easy to get the source from the download section however
- When you have the source remove the NUnit dll referances and add the MbUnit dll referances (MbUnit Core and MbUnit Framework dlls), make sure you also remove the NUnit referances in the code and referance MbUnit.Core.Framework and MbUnit.Framework.
- Your going to now get a lot of errrors, as such change the Assertion.Assert calls to Assert.*, by * I mean you will need to match as carefully as you can, by and large use AreEqual and IsFalse/IsTrue but use what ever works best.
With that done you should be able to recompile and run your tests using MbUnit with out a problem. Any questions let me know.