(t *testing.T)
| 212 | } |
| 213 | |
| 214 | func TestSharedState_ExplicitSerializationError(t *testing.T) { |
| 215 | t.Parallel() |
| 216 | |
| 217 | app := New(Config{SharedStorage: newSharedStateMemoryStorage(t)}) |
| 218 | err := app.SharedState().SetJSON("invalid", make(chan int), time.Second) |
| 219 | require.Error(t, err) |
| 220 | } |
| 221 | |
| 222 | func TestSharedState_ContextAwareVariants(t *testing.T) { |
| 223 | t.Parallel() |
nothing calls this directly
no test coverage detected