You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
274 B
17 lines
274 B
package filer_pb
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
)
|
|
|
|
func TestFileIdSize(t *testing.T) {
|
|
fileIdStr := "11745,0293434534cbb9892b"
|
|
|
|
fid, _ := ToFileIdObject(fileIdStr)
|
|
bytes, _ := proto.Marshal(fid)
|
|
|
|
println(len(fileIdStr))
|
|
println(len(bytes))
|
|
}
|