1package proto_test 2 3import ( 4 "testing" 5 6 "example.com/foo_proto" 7) 8 9func TestFoo(t *testing.T) { 10 msg := &foo_proto.Foo{ 11 Value: 1, 12 } 13 if msg.Value != 1 { 14 t.Fail() 15 } 16} 17