Sign in
pigweed
/
third_party
/
github
/
aspect-build
/
toolchains_protoc
/
456340fdfbcc7c7dda36e9dfeed36cf4eab632c7
/
.
/
examples
/
go
/
foo_proto_test.go
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()
}
}