(t *testing.T)
| 415 | } |
| 416 | |
| 417 | func TestSharedState_NewAppDefaultPrefixIncludesAppName(t *testing.T) { |
| 418 | t.Parallel() |
| 419 | |
| 420 | app := New(Config{AppName: "my-app", SharedStorage: newSharedStateMemoryStorage(t)}) |
| 421 | require.Equal(t, defaultSharedStatePrefix+"my-app-", app.SharedState().prefix) |
| 422 | } |
| 423 | |
| 424 | func TestSharedState_GetJSON_UnmarshalError(t *testing.T) { |
| 425 | t.Parallel() |
nothing calls this directly
no test coverage detected