CharliePoole
CharliePoole
@greentests You're welcome to give it a shot! Since there has been various discussion here about alternative approaches, please tell us what you intend before you do it. 😉 I've...
FWIW, the original purpose of all those `#if`s was to make it easy to see which build of nunitlite and the framework was in use. Prior to that, we would...
Back in early days, we had tests in NUnit that even handled stack overflow exceptions! Starting with .NET 4, it became impossible to catch certain exceptions that indicate a corrupted...
It's not a change - at least not since NUnit 3.0. The `--trace` option controls the `InternalTrace` setting, which is used by NUnit itself (framework, engine and console runner) to...
You can experiment with use of the `--out` option, which sends output from a test to a file. NUnit's own text output, like the test summary, should still appear. IIRC...
@stevenaw NUnit traditionally ran tests in a separate AppDomain, which it created. The .NET Framework agents still do that. You can find the key code in the `DomainManager` class. That...
I'm wondering why a .NET 6.0 test assembly, is expecting there to be more than one AppDomain in a process... i.e. the primary AppDomain. Perhaps this is not a bug...
Although I'm no longer part of the project, I'll answer because I'm the guy who did it. :-) The master branch is the branch used for developing NUnit V4, for...
Not enough info here yet to accept this as an issue. Need version of console runner and package type from which it was installed, version of VS project loader extension,...