Steven Weerdenburg
Steven Weerdenburg
I'd agree that this is a general problem and I think whatever solution is chosen here could benefit the framework as well. Even though we'll be trying to minimize breaking...
I this `TestContext.Test.Properties` should also be updated. It is currently described as an `IPropertyBag` but this was changed in 3.10 as part of https://github.com/nunit/nunit/issues/1578. A question was just asked in...
Apparently we hit some similar issues today around this with the opposite extreme from the OP. Type loading noticeably affected performance for us on a single highly sharded db with...
I really like this idea. Would this only apply for collection types (IEnumerable), or scalars too? I'm thinking of something like below: ```csharp var v = 7; Assert.That(v, Is.AnyOf(7)); ```...
Thanks @Dreamescaper I understand the arguments would need to be swapped, but I don't really understand the complexity or risks involved in doing that programmatically. Are you saying it might...
Ohh. Right, of course. That makes sense. Thanks for explaining @Dreamescaper !
Thanks for the thorough report @pracplayopen I haven't access to rider to confirm, but I suspect you may be right that the issue lies on the `rider/nunit-binding` side of things...
Thanks @pracplayopen I'd suspected you weren't on Windows given the path in your sample. Unfortunately, I'm not very familiar with if there are any Linux tools for diagnosing assembly loading...
Thanks @MrPerun I'm lacking the history for why `Inherited = false` is explicitly set here, but my guess is that at least at some point it was likely intended to...
This is an interesting idea, though you may be able to do it today too. How are you running the tests, is it via the console runner? While the framework...