ryo.saito
ryo.saito
Hi @robstoll I'm trying to use the infix function `value` in the form: ```kotlin this toContain value a ``` inside `CharSequenceToContainValuesExpectationsTest`, but I keep getting an error: ``` Unresolved reference:...
> @matcha4smiley infix function require exactly one argument. You cannot have an infix function without argument (thus we sometimes require to pass the filler `o` as in `toContain o` instead...
@robstoll Thanks! Since I’ve already come this far and I have some time now, I’d prefer to finish it up myself. I’ll handle the rebase and the remaining adjustments.
@robstoll Thanks for the review! I've fixed the mentioned parts. Please have a look when you get a chance.
> @matcha4smiley do you still intend to work on this? @robstoll I apologize for the delay. Unfortunately, I’m unable to allocate time to this at the moment, so I would...
@robstoll I'll work on this. 🙋♂️
Hi @robstoll👋 , I'm thinking about splitting the current test class into two: CharSequenceToContainValuesExpectationsTest (for value-based assertions) CharSequenceToContainRegexExpectationsTest (for regex-based assertions) For clarity, I’d also like to split the abstract...