Home
last modified time | relevance | path

Searched refs:GoTest (Results 1 – 8 of 8) sorted by relevance

/external/golang-protobuf/proto/
Dequal_test.go118 {"one set field zero, one unset field", &pb.GoTest{Param: Int32(0)}, &pb.GoTest{}, false},
122 {"repeated, one set", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{}, false},
123 …{"repeated, different length", &pb.GoTest{F_Int32Repeated: []int32{2, 3}}, &pb.GoTest{F_Int32Repea…
124 …{"repeated, different value", &pb.GoTest{F_Int32Repeated: []int32{2}}, &pb.GoTest{F_Int32Repeated:…
125 …{"repeated, equal", &pb.GoTest{F_Int32Repeated: []int32{2, 4}}, &pb.GoTest{F_Int32Repeated: []int3…
126 …{"repeated, nil equal nil", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: nil}, tr…
127 …{"repeated, nil equal empty", &pb.GoTest{F_Int32Repeated: nil}, &pb.GoTest{F_Int32Repeated: []int3…
128 …{"repeated, empty equal nil", &pb.GoTest{F_Int32Repeated: []int32{}}, &pb.GoTest{F_Int32Repeated: …
132 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("foo")}},
133 &pb.GoTest{RequiredField: &pb.GoTestField{Label: String("bar")}},
[all …]
Dclone_test.go325 src: &pb.GoTest{
336 dst: &pb.GoTest{},
337 want: &pb.GoTest{
350 src: &pb.GoTest{},
351 dst: &pb.GoTest{
362 want: &pb.GoTest{
375 src: &pb.GoTest{
378 dst: &pb.GoTest{},
379 want: &pb.GoTest{
Dall_test.go103 func initGoTest(setdefaults bool) *GoTest {
104 pb := new(GoTest)
175 func overify(t *testing.T, pb *GoTest, expected string) { argument
189 pbd := new(GoTest)
442 pb := new(GoTest)
455 func checkInitialized(pb *GoTest, t *testing.T) { argument
903 pbd := new(GoTest)
932 pbd := new(GoTest)
1125 pbd := new(GoTest)
1881 pbd := new(GoTest)
[all …]
/external/golang-protobuf/proto/test_proto/
Dtest.pb.go390 type GoTest struct { struct
485 func (m *GoTest) Reset() { *m = GoTest{} } argument
486 func (m *GoTest) String() string { return proto.CompactTextString(m) } argument
487 func (*GoTest) ProtoMessage() {} argument
488 func (*GoTest) Descriptor() ([]byte, []int) { argument
492 func (m *GoTest) XXX_Unmarshal(b []byte) error { argument
495 func (m *GoTest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument
498 func (m *GoTest) XXX_Merge(src proto.Message) { argument
501 func (m *GoTest) XXX_Size() int { argument
504 func (m *GoTest) XXX_DiscardUnknown() { argument
[all …]
Dtest.proto51 message GoTest { message
445 // Same as GoTest, but copied here to make testing easier.
/external/flatbuffers/tests/docker/languages/
DDockerfile.testing.golang.1_117 RUN ./GoTest.sh
/external/flatbuffers/tests/
DTestAll.sh7 sh GoTest.sh
/external/flatbuffers/docs/source/
DGoUsage.md29 To run the tests, use the [GoTest.sh](https://github.com/google/flatbuffers/
30 blob/master/tests/GoTest.sh) shell script.