(t *testing.T)
| 459 | } |
| 460 | |
| 461 | func TestNewExecutionFrameInvalidInput(t *testing.T) { |
| 462 | f, err := NewExecutionFrame(123) |
| 463 | if err == nil { |
| 464 | f.Close() |
| 465 | t.Error("NewExecutionFrame with int input did not return error") |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | func TestFramePopBaseFrame(t *testing.T) { |
| 470 | f := mustNewExecutionFrame(t, EmptyActivation()) |
nothing calls this directly
no test coverage detected