(t *testing.T)
| 179 | } |
| 180 | |
| 181 | func TestMailResendCacheKey(t *testing.T) { |
| 182 | got := MailResendCacheKey(1) |
| 183 | assert.Equal(t, "mailResend::1", got) |
| 184 | } |
| 185 | |
| 186 | func TestTwoFactorCacheKey(t *testing.T) { |
| 187 | got := TwoFactorCacheKey(1, "113654") |
nothing calls this directly
no test coverage detected