(t *testing.T)
| 469 | } |
| 470 | |
| 471 | func TestAssertEqual(t *testing.T) { |
| 472 | val1 := newVmValue(t, -12345678910) |
| 473 | buf, _ := val1.AsBytes() |
| 474 | val2 := newVmValue(t, buf) |
| 475 | |
| 476 | assertEqual(t, val1, val2) |
| 477 | } |
| 478 | |
| 479 | func TestXTuck(t *testing.T) { |
| 480 | checkStackOpCode(t, XTUCK, []Value{3, 2, 1, 0, 0}, []Value{3, 2, 1, 0, 0}) |
nothing calls this directly
no test coverage detected