junit-team / junit4

A programmer-oriented testing framework for Java.
https://junit.org/junit4
Eclipse Public License 1.0
8.53k stars 3.29k forks source link

Fix tests for floating point assertions #1673

Closed OlivierBlanvillain closed 3 years ago

OlivierBlanvillain commented 4 years ago

The issue is that both

assertEquals(1.0, 2.0, 0.0);

and

fail();

throw an AssertionFailedError, so these tests were actually not testing anything...