No, because the string will be implicitly converted to `true` and `(a && true) == a` (for boolean `a`), so it will only be `false` if the assertion fails. Using || would always evaluate to `true`
You're right, thanks!
This works too (but I wouldn't recommend it):
assert( someBooleanExpression || ! "It is false" );
You're right, thanks!
This works too (but I wouldn't recommend it):