package mem import ( "github.com/stretchr/testify/assert" "testing" ) func TestAllocateFree(t *testing.T) { buf := Allocate(12) Free(buf) if cap(buf) != min_size { t.Errorf("min size error allocated capacity=%d", cap(buf)) } if len(buf) != 12 { t.Errorf("size error") } buf = Allocate(4883) Free(buf) if cap(buf) != 1024<