(t *testing.T)
| 49 | } |
| 50 | |
| 51 | func TestClassify_InitNotification(t *testing.T) { |
| 52 | t.Parallel() |
| 53 | got := lifecycle.Classify(errors.New("failed to send initialized notification: bad")) |
| 54 | assert.Check(t, errors.Is(got, lifecycle.ErrInitNotification)) |
| 55 | } |
| 56 | |
| 57 | func TestClassify_SessionMissingByMessage(t *testing.T) { |
| 58 | t.Parallel() |