(Status status)
| 69 | } |
| 70 | |
| 71 | @Override |
| 72 | public boolean matches(Status status) { |
| 73 | return status != null |
| 74 | && codeMatcher.matches(status.getCode()) |
| 75 | && (descriptionMatcher == null || descriptionMatcher.matches(status.getDescription())) |
| 76 | && (causeMatcher == null || causeMatcher.matches(status.getCause())); |
| 77 | } |
| 78 | |
| 79 | @Override |
| 80 | public String toString() { |
nothing calls this directly
no test coverage detected