Hi
I'm new to NUnitLite, I think there is a bug in TextUI, it looks to me like you started down one path, then switched to another during testing.
In the RunTests functions the line:
ITestResult result = runner.Run(this, filter);
should it read:
ITestResult result = runner.Run(listener, filter);
You can pass a ITestListener into the TextUI constructor but it doesn't get used anywhere in the class. I have a class to tally up pass and fails etc. but if I pass it in it never gets called.
Thanks
Dave