(t *testing.T, expect, actual types.VmValue)
| 51 | } |
| 52 | |
| 53 | func assertEqual(t *testing.T, expect, actual types.VmValue) { |
| 54 | assert.Equal(t, value2json(t, expect), value2json(t, actual)) |
| 55 | } |
| 56 | |
| 57 | func newVmValue(t *testing.T, data Value) types.VmValue { |
| 58 | switch v := data.(type) { |
no test coverage detected