(t *testing.T)
| 79 | } |
| 80 | |
| 81 | func TestCLABELCOMMIT(t *testing.T) { |
| 82 | w := &bytes.Buffer{} |
| 83 | api := New(w) |
| 84 | |
| 85 | api.CLABELCOMMIT() |
| 86 | |
| 87 | expected := "CLABEL_COMMIT\n" |
| 88 | |
| 89 | require.Equal(t, expected, w.String()) |
| 90 | } |
| 91 | |
| 92 | func TestBEGIN(t *testing.T) { |
| 93 |
nothing calls this directly
no test coverage detected
searching dependent graphs…