(t *testing.T)
| 17 | ) |
| 18 | |
| 19 | func TestElicitationError_Error(t *testing.T) { |
| 20 | t.Parallel() |
| 21 | |
| 22 | err := &ElicitationError{Action: "decline", Message: "user said no"} |
| 23 | assert.Equal(t, "elicitation decline: user said no", err.Error()) |
| 24 | } |
| 25 | |
| 26 | func TestElicitationBridge_SendBeforeSwapReturnsError(t *testing.T) { |
| 27 | t.Parallel() |