Since assert
statements aren’t executed by default (they must be enabled with JVM flags) developers should never rely on their
execution the evaluation of any logic required for correct program function.
assert myList.remove(myList.get(0)); // Noncompliant
boolean removed = myList.remove(myList.get(0)); assert removed;