(t *testing.T)
| 68 | } |
| 69 | |
| 70 | func TestAllVersions(t *testing.T) { |
| 71 | for _, v := range AllEncodings() { |
| 72 | encoding, err := FromVersion(v.Version()) |
| 73 | |
| 74 | require.Equal(t, v.Version(), encoding.Version()) |
| 75 | require.NoError(t, err) |
| 76 | } |
| 77 | } |
nothing calls this directly
no test coverage detected