(t *testing.T)
| 30 | func (testArgs) Kind() string { return "rivertest_work_test" } |
| 31 | |
| 32 | func TestPanicError(t *testing.T) { |
| 33 | t.Parallel() |
| 34 | |
| 35 | panicErr := &PanicError{Cause: errors.New("test panic error"), Trace: "test trace"} |
| 36 | require.Equal(t, "rivertest.PanicError: test panic error\ntest trace", panicErr.Error()) |
| 37 | } |
| 38 | |
| 39 | func TestWorker_NewWorker(t *testing.T) { |
| 40 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…