(t *testing.T)
| 1798 | } |
| 1799 | |
| 1800 | func TestValueGetGoObjectUnavailableContext(t *testing.T) { |
| 1801 | v := &Value{} |
| 1802 | _, err := v.GetGoObject() |
| 1803 | require.Error(t, err) |
| 1804 | require.Contains(t, err.Error(), "value context is not available") |
| 1805 | } |
| 1806 | |
| 1807 | func TestValueGetGoObjectUnavailableHandleStore(t *testing.T) { |
| 1808 | rt := NewRuntime() |
nothing calls this directly
no test coverage detected