(t *testing.T)
| 107 | } |
| 108 | |
| 109 | func TestInMemoryRefreshTokenStore_GetEmptyToken(t *testing.T) { |
| 110 | store := NewInMemoryRefreshTokenStore() |
| 111 | |
| 112 | _, err := store.Get(context.Background(), "") |
| 113 | if err != ErrRefreshTokenNotFound { |
| 114 | t.Fatalf("Expected ErrRefreshTokenNotFound for empty token, got: %v", err) |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | func TestInMemoryRefreshTokenStore_GetExpired(t *testing.T) { |
| 119 | store := NewInMemoryRefreshTokenStore() |
nothing calls this directly
no test coverage detected
searching dependent graphs…