Class EqualToLines

  • All Implemented Interfaces:
    org.hamcrest.Matcher<java.lang.String>, org.hamcrest.SelfDescribing

    public class EqualToLines
    extends org.hamcrest.BaseMatcher<java.lang.String>
    Equality matcher that that ignores changes in line separators, and shows a line by line diff on mismatch.
    • Constructor Summary

      Constructors 
      Constructor Description
      EqualToLines​(java.lang.String expected)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void describeMismatch​(java.lang.Object item, org.hamcrest.Description description)  
      void describeTo​(org.hamcrest.Description description)  
      boolean matches​(java.lang.Object item)  
      • Methods inherited from class org.hamcrest.BaseMatcher

        _dont_implement_Matcher___instead_extend_BaseMatcher_, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • EqualToLines

        public EqualToLines​(java.lang.String expected)
    • Method Detail

      • matches

        public boolean matches​(java.lang.Object item)
      • describeTo

        public void describeTo​(org.hamcrest.Description description)
      • describeMismatch

        public void describeMismatch​(java.lang.Object item,
                                     org.hamcrest.Description description)
        Specified by:
        describeMismatch in interface org.hamcrest.Matcher<java.lang.String>
        Overrides:
        describeMismatch in class org.hamcrest.BaseMatcher<java.lang.String>