First argument to each assertFoo
method can be a string that's printed if the assertion fails:
public void testSubtraction() {
Fraction actual = half.subtract(fourth);
Fraction expected = fourth;
assertEquals("Could not subtract one fourth from two fourths",
expected, actual);
}