Do you have any JUnit tests that have assertions like this? List list = getList();assertFalse(!list.isEmpty()); Whew, that's a nasty assertFalse. Let's see, List.isEmpty(), but the negation of that, and we don't want that negation to be true... yikes. Far better...