shad-go/illegal/string_test.go
2023-10-03 20:25:41 +03:00

18 lines
356 B
Go

package illegal_test
import (
"testing"
"unsafe"
"github.com/stretchr/testify/assert"
"gitlab.com/manytask/itmo-go/public/illegal"
)
func TestStringFromBytes(t *testing.T) {
b := []byte{'a', 'b', 'c'}
s := illegal.StringFromBytes(b)
assert.Equal(t, "abc", s)
assert.Equal(t, *(*uintptr)(unsafe.Pointer(&b)), *(*uintptr)(unsafe.Pointer(&s)))
}