blob: 114188af6131e67aadbcae535d0f996d91d5703d [file]
package proto_test
import (
"testing"
"example.com/foo_proto"
)
func TestFoo(t *testing.T) {
msg := &foo_proto.Foo{
Msg: "hello world",
}
if msg.Msg != "hello world" {
t.Fail()
}
}