(t *testing.T)
| 19 | } |
| 20 | |
| 21 | func TestWithEmptyInstructions(t *testing.T) { |
| 22 | t.Parallel() |
| 23 | inner := &toolSet{} |
| 24 | |
| 25 | wrapped := WithInstructions(inner, "") |
| 26 | |
| 27 | assert.Same(t, wrapped, inner) |
| 28 | } |
| 29 | |
| 30 | func TestWithInstructions_replace(t *testing.T) { |
| 31 | t.Parallel() |
nothing calls this directly
no test coverage detected