IT-VBFK

Results 59 comments of IT-VBFK

Is this a trivial fix like `bool shouldRecurse = options.AllowInfiniteRecursion || currentNode.Depth

An alternative would be to add a new method: `SkipWhen` which does the opposite of `OnlyWhen`.

Is there a way to extract the _expectation_ variable name? This seems a little odd in the failure message: `bla.Should().Imply(blubb)` would result in `Expected "bla" to imply "[variable name inside...

Ahhm.. @94sedighi I've missed the comment where you "saved" this issue. Sorry :)

How would you add this argument? ```csharp public AndConstraint Imply(bool implicator, string because = "", [CallerArgumentExpression("implicator")] string implicatorMessage = "", params object[] becauseArgs) ``` or ```csharp public AndConstraint Imply(bool implicator,...

Hmm.. what I can see by now: we have to go with approach 2, because if you pass `becauseArgs` the first one is considered as custom `CallerArgumentExpression`

Ok I see. Unfortunately this param has to be optional. What we can do? Can we force users to use this parameter?

Or maybe this only a documentation issue?