Damien Neil | 7f9c7d9 | 2019-12-19 13:53:31 -0800 | [diff] [blame^] | 1 | // Copyright 2019 The Go Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
| 5 | package goproto.proto.fuzz; |
| 6 | |
| 7 | import "test/test.proto"; |
| 8 | import "test3/test.proto"; |
| 9 | |
| 10 | // Fuzz is a container for every message we want to make available to the fuzzer. |
| 11 | message Fuzz { |
| 12 | optional goproto.proto.test.TestAllTypes test_all_types = 1; |
| 13 | optional goproto.proto.test.TestAllExtensions test_all_extensions = 2; |
| 14 | optional goproto.proto.test.TestRequired test_required = 3; |
| 15 | optional goproto.proto.test.TestRequiredForeign test_required_foreign = 4; |
| 16 | optional goproto.proto.test.TestRequiredGroupFields test_required_group_fields = 5; |
| 17 | optional goproto.proto.test.TestPackedTypes test_packed_types = 6; |
| 18 | optional goproto.proto.test.TestPackedExtensions test_packed_extensions = 7; |
| 19 | optional goproto.proto.test3.TestAllTypes test_all_types3 = 8; |
| 20 | } |