Class EqualIgnoreIndent

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

    public class EqualIgnoreIndent
    extends org.hamcrest.BaseMatcher<java.lang.String>
    Equality matcher that ignores line indent. But matches all other spacing.
    • Constructor Summary

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

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void describeMismatch​(java.lang.Object actual, org.hamcrest.Description mismatchDescription)  
      void describeTo​(org.hamcrest.Description description)  
      boolean matches​(java.lang.Object o)  
      • 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

      • EqualIgnoreIndent

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

      • matches

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

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

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