(t *testing.T)
| 98 | } |
| 99 | |
| 100 | func TestInMemoryRefreshTokenStore_GetNonExistent(t *testing.T) { |
| 101 | store := NewInMemoryRefreshTokenStore() |
| 102 | |
| 103 | _, err := store.Get(context.Background(), "nonexistent") |
| 104 | if err != ErrRefreshTokenNotFound { |
| 105 | t.Fatalf("Expected ErrRefreshTokenNotFound, got: %v", err) |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | func TestInMemoryRefreshTokenStore_GetEmptyToken(t *testing.T) { |
| 110 | store := NewInMemoryRefreshTokenStore() |
nothing calls this directly
no test coverage detected
searching dependent graphs…