(t *testing.T)
| 422 | } |
| 423 | |
| 424 | func TestFrameSetContext(t *testing.T) { |
| 425 | ctx := context.Background() |
| 426 | f := mustNewExecutionFrame(t, EmptyActivation()) |
| 427 | defer f.Close() |
| 428 | |
| 429 | if err := f.SetContext(ctx, 1); err != nil { |
| 430 | t.Errorf("SetContext failed: %v", err) |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | func TestFrameSetContextTwiceError(t *testing.T) { |
| 435 | ctx := context.Background() |
nothing calls this directly
no test coverage detected