(t *testing.T, r string)
| 279 | } |
| 280 | |
| 281 | func (ed *WithInviteCode) assertHTMLContent(t *testing.T, r string) { |
| 282 | assert.Contains(t, r, "Here is your invite code", "Should contains the instruction") |
| 283 | assert.Contains(t, r, "123456", "Should contain the short code") |
| 284 | } |
| 285 | |
| 286 | func (ed *WithInviteCode) assertPlainTextContent(t *testing.T, r string) { |
| 287 | assert.Contains(t, r, "Here is your invite code", "Should contains the instruction") |
nothing calls this directly
no outgoing calls
no test coverage detected