(t *testing.T)
| 47 | } |
| 48 | |
| 49 | func TestRegisterEncoderNoName(t *testing.T) { |
| 50 | assert.Equal(t, errNoEncoderNameSpecified, RegisterEncoder("", newNilEncoder), "expected an error when registering an encoder with no name") |
| 51 | } |
| 52 | |
| 53 | func TestNewEncoder(t *testing.T) { |
| 54 | testEncoders(func() { |
nothing calls this directly
no test coverage detected