Package ext.jtester.hamcrest

Examples of ext.jtester.hamcrest.Description$NullDescription


      public boolean matches(Object item) {
        return matcher.matches(item);
      }

      public void describeTo(mockit.external.hamcrest.Description description) {
        Description message = new StringDescription();
        matcher.describeTo(message);
        description.appendText(message.toString());
      }
    };
  }
View Full Code Here


  public boolean matches(Object item) {
    return hamcrestMatcher.matches(item);
  }

  public void describeTo(mockit.external.hamcrest.Description description) {
    Description strDescription = new StringDescription();
    hamcrestMatcher.describeTo(strDescription);
    description.appendText(strDescription.toString());
  }
View Full Code Here

TOP

Related Classes of ext.jtester.hamcrest.Description$NullDescription

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.