github.com/RevenueMonster/sqlike@v1.0.6/sql/codec/helper_test.go (about) 1 package codec 2 3 import ( 4 "testing" 5 6 "github.com/stretchr/testify/require" 7 ) 8 9 func TestB2s(t *testing.T) { 10 str := `hello world` 11 require.Equal(t, str, b2s([]byte(str))) 12 }