Lines Matching full:description
9 import org.hamcrest.Description;
17 * In case of failure, ArgumentMatcher generates description based on <b>decamelized class name</b> - to promote meaningful class names.
18 * For example <b>StringWithStrongLanguage</b> matcher will generate 'String with strong language' description.
19 * You can always override describeTo() method and provide detailed description.
79 * For example <b>StringWithStrongLanguage</b> matcher will generate 'String with strong language' description in case of failure.
82 * provide more specific description of the matcher (useful when
85 * @param description the description to which the matcher description is
88 public void describeTo(Description description) {
90 description.appendText(Decamelizer.decamelizeMatcher(className));