(t *testing.T)
| 38 | } |
| 39 | |
| 40 | func TestActivation_Resolve(t *testing.T) { |
| 41 | activation, _ := NewActivation(map[string]any{"a": types.True}) |
| 42 | if val, found := activation.ResolveName("a"); !found || val != types.True { |
| 43 | t.Error("Activation failed to resolve 'a'") |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | func TestActivation_ResolveLazy(t *testing.T) { |
| 48 | var v ref.Val |
nothing calls this directly
no test coverage detected