(t *testing.T)
| 184 | } |
| 185 | |
| 186 | func TestTwoFactorCacheKey(t *testing.T) { |
| 187 | got := TwoFactorCacheKey(1, "113654") |
| 188 | assert.Equal(t, "twoFactor::1::113654", got) |
| 189 | } |
| 190 | |
| 191 | func TestRandomSalt(t *testing.T) { |
| 192 | salt1, err := RandomSalt() |
nothing calls this directly
no test coverage detected