(t *testing.T)
| 408 | } |
| 409 | |
| 410 | func TestSharedState_DefaultPrefixFallback(t *testing.T) { |
| 411 | t.Parallel() |
| 412 | |
| 413 | state := newSharedState(&Config{SharedStorage: newSharedStateMemoryStorage(t)}) |
| 414 | require.Equal(t, defaultSharedStatePrefix, state.prefix) |
| 415 | } |
| 416 | |
| 417 | func TestSharedState_NewAppDefaultPrefixIncludesAppName(t *testing.T) { |
| 418 | t.Parallel() |
nothing calls this directly
no test coverage detected