diff options
Diffstat (limited to 'container/stub/exit_test.go')
| -rw-r--r-- | container/stub/exit_test.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/container/stub/exit_test.go b/container/stub/exit_test.go index 4e935ff4..15ad31f1 100644 --- a/container/stub/exit_test.go +++ b/container/stub/exit_test.go @@ -32,13 +32,20 @@ func (o *overrideTFailNow) Fail() { } func TestHandleExit(t *testing.T) { + t.Parallel() + t.Run("exit", func(t *testing.T) { + t.Parallel() defer stub.HandleExit(t) panic(stub.PanicExit) }) t.Run("goexit", func(t *testing.T) { + t.Parallel() + t.Run("FailNow", func(t *testing.T) { + t.Parallel() + ot := &overrideTFailNow{T: t} defer func() { if !ot.failNow { @@ -50,6 +57,8 @@ func TestHandleExit(t *testing.T) { }) t.Run("Fail", func(t *testing.T) { + t.Parallel() + ot := &overrideTFailNow{T: t} defer func() { if !ot.fail { @@ -62,11 +71,16 @@ func TestHandleExit(t *testing.T) { }) t.Run("nil", func(t *testing.T) { + t.Parallel() defer stub.HandleExit(t) }) t.Run("passthrough", func(t *testing.T) { + t.Parallel() + t.Run("toplevel", func(t *testing.T) { + t.Parallel() + defer func() { want := 0xcafebabe if r := recover(); r != want { @@ -79,6 +93,8 @@ func TestHandleExit(t *testing.T) { }) t.Run("new", func(t *testing.T) { + t.Parallel() + defer func() { want := 0xcafe if r := recover(); r != want { |
