Christophe PLAT
Christophe PLAT
Repro steps: ```c# [TestFixture] public class MyTests { [Test] public void ShouldWriteSameMessage() { var actualValue = false; Assert.Multiple(() => { Assert.That(actualValue, new MyConstraint()); Assert.That(actualValue, new MyConstraint().After(20)); }); } public class...
I originally wanted to open a PR, because that looked like a quick fix, but it's surprisingly tricky. You can't simply modify the `DelegatingConstraintResult` to call the inner result's `WriteMessageTo`...
My goal is to wrap the [GregFinzer/Compare-Net-Objects](https://github.com/GregFinzer/Compare-Net-Objects) library in a NUnit constraint. That library performs a deep equality check, and returns a user friendly output that looks like this: ```...
@OsirisTerje, thanks for the information. Rest assured that I only want to create a new constraint for my own use: this is quite niche and certainly not something I'd even...
Yes, it works, thanks! That's even better, because now my continuous integration won't compile the code twice :)
The issue has already been raised in #248
This looks similar to #220, but this time it will be easier to investigate since it only uses the standard .NET tooling :)
I can't reproduce the failure. Can you share your csproj and the command you used to generate your exe? I used Visual Studio 2022 Version 17.6.0 Preview 4.0 and .NET...
Ah right, I get the AOT error when running the native exe. I'll see if I can find a solution, but I'm not sure it's possible since DynamicExpresso tries to...
Thanks for the report! It's indeed similar to #259. Good catch for the angle brackets.. I'll add this to my TODO list :)