(t *testing.T)
| 567 | } |
| 568 | |
| 569 | func TestIsWrongLength(t *testing.T) { |
| 570 | _, err := Parse("12345") |
| 571 | if !IsInvalidLengthError(err) { |
| 572 | t.Errorf("expected error type is invalidLengthError") |
| 573 | } |
| 574 | } |
| 575 | |
| 576 | func FuzzParse(f *testing.F) { |
| 577 | for _, tt := range tests { |
nothing calls this directly
no test coverage detected