Sign in
pigweed
/
third_party
/
github
/
aspect-build
/
toolchains_protoc
/
HEAD
/
.
/
examples
/
go
/
greeter_proto_test.go
blob: 691d6c006905b6949283d1c64e9571e89ddc327f [
file
] [
log
] [
blame
]
package proto_test
import (
"testing"
"example.com/greeter_proto"
)
func TestFoo(t *testing.T) {
msg := &greeter_proto.HelloReply{
Message: "hello world",
}
if msg.Message != "hello world" {
t.Fail()
}
}