It would be convenient to have NUnitLite and NUnitLiteTests projects for compact framework so that people don't have to create them and copy the files themselves. We may want separate sets for .NET...
Not all platforms have a console device. And in .NET CF 1.0, the console output can not be redirected. Therefore... we should do all our text output to a TextWriter interace and inject the appropr...
On CF all tests with Expected Exceptions are simply reporting the excetpion rather than handling it. This appears to be due to one of several places where we catch a TargetInvocationException. exp...
At line 132 of CommandLineOptions.cs (the DisplayHelp() method), there is a preprocessor conditional block which uses the define WindowsCD. This should be WindowsCE.
The StackFilter class looks for NUnitLite.Framework classes to eliminate from the stack even though we changed the namespace to be NUnit.Framework. The tests are also incorrect. In addition, the f...
see corresponding email
... and make it work, of course!
is 2006, should be 2007
src\NUnitLite\Runner\CommandLineOptions.cs, line 132 reads #if PocketPC || WindowsCD || NETCF but should probably be #if PocketPC || WindowsCE || NETCF