(t *testing.T)
| 476 | } |
| 477 | |
| 478 | func TestNewExecutionFrameInvalidInput(t *testing.T) { |
| 479 | f, err := NewExecutionFrame(123) |
| 480 | if err == nil { |
| 481 | f.Close() |
| 482 | t.Error("NewExecutionFrame with int input did not return error") |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | func TestFramePopBaseFrame(t *testing.T) { |
| 487 | f := mustNewExecutionFrame(t, EmptyActivation()) |
nothing calls this directly
no test coverage detected