| 12345678910111213141516171819202122 | package srtp_testimport (	"testing"	"v2ray.com/core/common/buf"	"v2ray.com/core/testing/assert"	. "v2ray.com/core/transport/internet/headers/srtp")func TestSRTPWrite(t *testing.T) {	assert := assert.On(t)	content := []byte{'a', 'b', 'c', 'd', 'e', 'f', 'g'}	srtp := SRTP{}	payload := buf.NewLocal(2048)	payload.AppendSupplier(srtp.Write)	payload.Append(content)	assert.Int(payload.Len()).Equals(len(content) + srtp.Size())}
 |