I have a couple of Booleans
I want to test, like
assert(g8Exists, equalTo(true)) &&
assert(projectExists, equalTo(true)) &&
assert(testenvExists, equalTo(true)) ...
If one fails, all I get is:
false did not satisfy equalTo(true)
No clue which line failed. Is there a way I can add a descriptive Assert message. For example:
assert(g8Exists, equalTo(true), "g8Exists")
Or preferred:
assertTrue(g8Exists, "g8Exists")
Would result in
false did not satisfy equalTo(true) - g8Exists
Or is there a better way to test Booleans
in general?