jmartschinke

Results 11 comments of jmartschinke

I do think that constructor intercepting should be a default behaviour. When implementing the attribute you can always just not log the constructor (MethodBase.IsConstructor).

Thank you for your help, this is indeed very helpful to know! I did however just create a helper class for this: ``` /// /// Wraps code containing a series...

Of course :) These are some example tests: ``` [Test] public void TestMultipleFailures() { Asserts.Multiple(() => { Assert.That(true, Is.True); Assert.That(true, Is.True); }, "1"); Asserts.Multiple(() => { Assert.That(true, Is.False); Assert.That(true, Is.False);...

> Very low level question: Where did you implement your helper method? Did you extend anything? If so, what? I see the method but not the helper class :) I...

Hi, when would the 6.0 Release happen?

@dtchepak unfortunately I am not. I need a released version.

Are there any new insights when a new release will take place?

@dtchepak no need to apologise! I love the project and know you are all doing your best :) Just keep me up to date!

> Please continue to support .NET Framework as well. There's no EOL for .NET Framework >= 4.7 yet and being able to run our tests for all targets is a...

In fact, net8.0 is in my opinion also unneccessary to target directly, as netstandard2.0 contains: - .NET and .NET Core | 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0,...