Package org.junit

Class ComparisonFailure

All Implemented Interfaces:
Serializable

public class ComparisonFailure extends AssertionError
Thrown when an assertEquals(String, String) fails. Create and throw a ComparisonFailure manually if you want to show users the difference between two complex strings.

Inspired by a patch from Alex Chaffee (alex@purpletech.com)

Since:
4.0
See Also:
  • Constructor Details

    • ComparisonFailure

      public ComparisonFailure(String message, String expected, String actual)
      Constructs a comparison failure.
      Parameters:
      message - the identifying message or null
      expected - the expected string value
      actual - the actual string value
  • Method Details