Stefan Holpp

Results 23 comments of Stefan Holpp

Hi, is there anywhere a roadmap or planning document where I could see a release timeline for NUnit 4? Is a release of NUnit 4 at all planned in the...

Hi, same here. Need to run multiple assemblies without switching the app domain for each assembly. Having all test assemblies run in the same default app domain would be a...

@manfred-brands: Thanks for the proposal! Yes, we want one event for every OneTimeSetUp/TearDown involved. Would you do it in the same way as implemented in [this PR](https://github.com/nunit/nunit/pull/4652/commits/ada9b1e58e879662b3a685e8913679f3c4d52274#diff-212ddfd41f5e02de68912f6db193e2a446ff33cf8045aa0aaff87b9d6b185416)? I have adapted...

Hi, I added small sample test case to my [PR](https://github.com/nunit/nunit/pull/4652) that check whether test events for OneTimeSetUp and OneTimeTearDown are coming in the right order and right number. As suggested,...

Hi, @manfred-brands: Thanks for your inputs! Regarding the not compiling code, I have done the necessary adaptations and will take care about it in the future. :) I also implemented...

Hi @manfred-brands, @OsirisTerje, I have added now * Logic for failures in `OneTimeSetUp` / `OneTimeTearDown` such that the test events are still raised even case of errors * Additional tests...

@manfred-brands, @OsirisTerje I stumbled over another problem: The detection of `OneTimeSetUp` / `OneTimeTearDown` methods in [WortkItem.cs](https://github.com/TSAVogt/nunit/blob/dd02233c195bd37e701407c3b36353fb9a988792/src/NUnitFramework/framework/Internal/Execution/WorkItem.cs#L389) seems to differ depending on the fixture structure. When the `SetUpTearDownItem` is created, its...

@manfred-brands: I would have to check that. I will come back to that in the next days.

@manfred-brands: The current implementation of Setup / TearDown is quite similar to the one for OneTimeSetUp / OneTimeTearDown. The `SetUpTearDownCommand` runs the methods contained in `SetUpTearDownItem` which might be multiple....

@OsirisTerje Thank you for the comprehensive information and your effort in formulating it here. Its very much appreciated. I will bring the mentioned points to the PR. Question about how...