xref: /aosp_15_r20/external/bazelbuild-rules_go/tests/bcr/proto/foo_proto_test.go (revision 9bb1b549b6a84214c53be0924760be030e66b93a)
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