go-ceph/internal/cutil/cutil_test.go
Sven Anderson 4706453428 rbd: remove unnecessary C wrapper functions
Signed-off-by: Sven Anderson <sven@redhat.com>
2020-08-28 09:51:06 -04:00

14 lines
179 B
Go

package cutil
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestVoidPtr(t *testing.T) {
i := uintptr(42)
j := uintptr(VoidPtr(i))
assert.Equal(t, i, j)
}