(t *testing.T)
| 239 | } |
| 240 | |
| 241 | func TestProtosVersion(t *testing.T) { |
| 242 | _, err := cel.NewEnv(Protos(ProtosVersion(0))) |
| 243 | if err != nil { |
| 244 | t.Fatalf("ProtosVersion(0) failed: %v", err) |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | // msgWithExtensions generates a new example message with all possible extensions set. |
| 249 | func msgWithExtensions() *proto2pb.ExampleType { |
nothing calls this directly
no test coverage detected