(t *testing.T)
| 484 | } |
| 485 | |
| 486 | func TestFramePopBaseFrame(t *testing.T) { |
| 487 | f := mustNewExecutionFrame(t, EmptyActivation()) |
| 488 | defer f.Close() |
| 489 | |
| 490 | popped := f.Pop() |
| 491 | if popped != f { |
| 492 | t.Errorf("pop() on base frame got %v, want %v", popped, f) |
| 493 | } |
| 494 | } |
| 495 | |
| 496 | func TestLazyVariableResolution(t *testing.T) { |
| 497 | lazyRefValCalled := 0 |
nothing calls this directly
no test coverage detected