(t *testing.T)
| 8 | ) |
| 9 | |
| 10 | func TestEndTxnRequest(t *testing.T) { |
| 11 | for _, version := range []int16{0, 1, 2, 3} { |
| 12 | prototest.TestRequest(t, version, &endtxn.Request{ |
| 13 | TransactionalID: "transactional-id-1", |
| 14 | ProducerID: 1, |
| 15 | ProducerEpoch: 100, |
| 16 | Committed: false, |
| 17 | }) |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | func TestEndTxnResponse(t *testing.T) { |
| 22 | for _, version := range []int16{0, 1, 2, 3} { |
nothing calls this directly
no test coverage detected