(t *testing.T)
| 241 | } |
| 242 | |
| 243 | func TestRecordBatchEncoding(t *testing.T) { |
| 244 | for _, tc := range recordBatchTestCases() { |
| 245 | testEncodable(t, tc.name, &tc.batch, tc.encoded) |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | func TestRecordBatchDecoding(t *testing.T) { |
| 250 | for _, tc := range recordBatchTestCases() { |
nothing calls this directly
no test coverage detected