(t *testing.T)
| 18 | } |
| 19 | |
| 20 | func TestFactory_CreateStore_DefaultConfig(t *testing.T) { |
| 21 | factory := NewFactory() |
| 22 | |
| 23 | store, err := factory.CreateStore(nil) |
| 24 | |
| 25 | assert.NoError(t, err) |
| 26 | assert.NotNil(t, store) |
| 27 | assert.IsType(t, &InMemoryRefreshTokenStore{}, store) |
| 28 | } |
| 29 | |
| 30 | func TestNewStore_Memory(t *testing.T) { |
| 31 | config := NewMemoryConfig() |
nothing calls this directly
no test coverage detected
searching dependent graphs…