(t *testing.T)
| 81 | } |
| 82 | |
| 83 | func TestStackAddrs(t *testing.T) { |
| 84 | pat := regexp.MustCompile("^0x[a-h0-9]+( 0x[a-h0-9]+)*$") |
| 85 | er := New("big trouble") |
| 86 | if !pat.MatchString(er.StackAddrs()) { |
| 87 | t.Errorf("StackAddrs didn't match `%s`: %q", pat, er.StackAddrs()) |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | func makeTestErrorClassifier( |
| 92 | callCount *int, |
nothing calls this directly
no test coverage detected