(t *testing.T)
| 467 | } |
| 468 | |
| 469 | func TestFramePopBaseFrame(t *testing.T) { |
| 470 | f := mustNewExecutionFrame(t, EmptyActivation()) |
| 471 | defer f.Close() |
| 472 | |
| 473 | popped := f.Pop() |
| 474 | if popped != f { |
| 475 | t.Errorf("pop() on base frame got %v, want %v", popped, f) |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | func TestLazyVariableResolution(t *testing.T) { |
| 480 | lazyRefValCalled := 0 |
nothing calls this directly
no test coverage detected