Requirement 2 failed. The validator gave me the recommandation: Achte darauf, dass compareTo den Wert 0 zurückgibt, wenn ein Objekt mit sich selbst verglichen wird. I tested it with:
if (this.equals(o))
            wertGesamt = 0;
and
if (this == o)
            wertGesamt = 0;
without achievment. Have you any idea?