Reports assert statements. For example,
assert param != null;

Quick fix replaces it with if statement throwing an java.lang.AssertionError.

Example:
if (param == null) throw new AssertionError();