(t *testing.T, reg *Registry, src string)
| 37 | } |
| 38 | |
| 39 | func loadFile(t *testing.T, reg *Registry, src string) *descriptorpb.FileDescriptorProto { |
| 40 | t.Helper() |
| 41 | fds := loadFileWithCodeGeneratorRequest(t, reg, &pluginpb.CodeGeneratorRequest{}, src) |
| 42 | return fds[0] |
| 43 | } |
| 44 | |
| 45 | func TestLoadFile(t *testing.T) { |
| 46 | reg := NewRegistry() |
no test coverage detected