(t *testing.T)
| 11 | } |
| 12 | |
| 13 | func TestReflectPointer(t *testing.T) { |
| 14 | m := NewPointerMap(0, 0) |
| 15 | x, y := 56, 12 |
| 16 | m.Add(unsafe.Pointer(&x), unsafe.Pointer(&y)) |
| 17 | } |
| 18 | |
| 19 | func TestUnsafe(t *testing.T) { |
| 20 | m := NewUnsafeMap(0, 0) |
nothing calls this directly
no test coverage detected