Description describe(Description description)

This builds a textual description of the matcher.

Source

Description describe(Description description) {
  if (_matcher == null) {
    return description.add("throws");
  } else {
    return description.add('throws ').addDescriptionOf(_matcher);
  }
}