(other interface{})
| 90 | } |
| 91 | |
| 92 | func (etn *exampleTimeNano) Equal(other interface{}) bool { |
| 93 | oetn, ok := other.(*exampleTimeNano) |
| 94 | if !ok { |
| 95 | return false |
| 96 | } |
| 97 | return etn.T.Equal(oetn.T) |
| 98 | } |
| 99 | |
| 100 | func TestDecoder(t *testing.T) { //nolint:maintidx,tparallel |
| 101 | t.Parallel() |
no outgoing calls
no test coverage detected