describe method
override
Builds a textual description of the matcher.
Implementation
Description describe(Description description) {
if (_matcher == null) {
return description.add("throws");
} else {
return description.add('throws ').addDescriptionOf(_matcher);
}
}