Is there a way to do "1".shouldBeLessThan("5", myC...
# kotest
j
Is there a way to do "1".shouldBeLessThan("5", myComparator) I can only see that I can use my comparator in equals/notEquals
s
Not currently
👍 1
j
Is there an open issue for this?
s
nope
👍 1
c
what is the use case for this?
j
I was testing my Comparator
s
You could do myComparator.compare(1,5).shouldBeNegative() or something
👍 1