(t *testing.T)
| 39 | } |
| 40 | |
| 41 | func TestWithInstructions_add(t *testing.T) { |
| 42 | t.Parallel() |
| 43 | inner := &toolSet{ |
| 44 | instruction: "Existing instructions", |
| 45 | } |
| 46 | |
| 47 | wrapped := WithInstructions(inner, "{ORIGINAL_INSTRUCTIONS}\nMore instructions") |
| 48 | |
| 49 | assert.Equal(t, "Existing instructions\nMore instructions", tools.GetInstructions(wrapped)) |
| 50 | } |
nothing calls this directly
no test coverage detected