(t *testing.T)
| 31 | } |
| 32 | |
| 33 | func uncalledSigner(t *testing.T) MessageSignerFunc { |
| 34 | return func(io.Writer, io.Reader) error { |
| 35 | t.Error("MessageSignerFunc should not be called") |
| 36 | return nil |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | func TestCommit_Marshal(t *testing.T) { |
| 41 | t.Parallel() |
no test coverage detected
searching dependent graphs…